diff options
Diffstat (limited to 'src/app/layout.tsx')
| -rw-r--r-- | src/app/layout.tsx | 44 |
1 files changed, 23 insertions, 21 deletions
diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 65445e8..ef1eb9d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,28 +1,30 @@ -import Head from 'next/head' -import type { Metadata } from 'next' -import { Inter } from 'next/font/google' -import Footer from '../components/Footer/Footer' -import { Analytics } from "@vercel/analytics/react" -import './globals.css' +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'] }) +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: 'PhaseTracker - Phase Connect Subscriber Tracker', - description: 'PhaseTracker, historical subscriber data for members of Phase Connect', -} + title: "PhaseTracker - Phase Connect Subscriber Tracker", + description: + "PhaseTracker, historical subscriber data for members of Phase Connect", +}; export default function RootLayout({ - children, + children, }: { - children: React.ReactNode + children: React.ReactNode; }) { - return ( - <html lang="en"> - <body className={inter.className}>{children} - <Footer /> - <Analytics/> - </body> - </html> - ) -}
\ No newline at end of file + return ( + <html lang="en"> + <body className={inter.className}> + {children} + <Footer /> + <Analytics /> + </body> + </html> + ); +} |
