blob: c71a7d43e4d0ae982efcdfa42a5db99c0e01c4a4 (
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 type { 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>
);
}
|