blob: 1b01ac12f4cef2b741453e688ea1b81a50a250c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import { Analytics } from "@vercel/analytics/react";
import Metadata from "next";
import Footer from "../components/Footer/Footer";
import "./globals.css";
export const metadata: Metadata = {
title: "PhaseTracker - Phase Connect Subscriber Tracker",
description:
"PhaseTracker, historical subscriber data for members of Phase Connect",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>
{children}
<Footer />
<Analytics />
</body>
</html>
);
}
|