diff options
| -rw-r--r-- | src/app/layout.tsx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ef1eb9d..c71a7d4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,11 +1,8 @@ import { Analytics } from "@vercel/analytics/react"; import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import Head from "next/head"; import Footer from "../components/Footer/Footer"; import "./globals.css"; -const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { title: "PhaseTracker - Phase Connect Subscriber Tracker", @@ -20,7 +17,7 @@ export default function RootLayout({ }) { return ( <html lang="en"> - <body className={inter.className}> + <body> {children} <Footer /> <Analytics /> |
