diff --git a/app/layout.tsx b/app/layout.tsx index 00f989f..1982cc7 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,19 +1,18 @@ +import Footer from "@/components/home/Footer"; +import { getSiteUrl } from "@/lib/utils"; +import { ClerkProvider } from "@clerk/nextjs"; +import { dark } from "@clerk/themes"; +import { GoogleAnalytics } from "@next/third-parties/google"; +import { Theme } from "@radix-ui/themes"; +import "@radix-ui/themes/styles.css"; +import { Analytics } from "@vercel/analytics/react"; +import { SpeedInsights } from "@vercel/speed-insights/next"; import type { Metadata, Viewport } from "next"; import { Inter } from "next/font/google"; -import "./globals.css"; +import Script from "next/script"; import React from "react"; -import { Analytics } from "@vercel/analytics/react"; -import "@radix-ui/themes/styles.css"; -import { Theme } from "@radix-ui/themes"; import Navbar from "../components/Navbar"; -import { getSiteUrl } from "@/lib/utils"; -import { SpeedInsights } from "@vercel/speed-insights/next"; -import { GoogleAnalytics } from "@next/third-parties/google"; -import Footer from "@/components/home/Footer"; -import Script from "next/script"; -import { ClerkProvider } from "@clerk/nextjs"; -import { dark } from "@clerk/themes"; -import Head from "next/head"; +import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); /** @@ -89,16 +88,14 @@ export default function RootLayout({ }} > - + -
+
{children}