Files
encoach_landingpage/src/app/layout.tsx
2023-10-18 22:19:10 +01:00

25 lines
682 B
TypeScript

import "./globals.css";
import type {Metadata} from "next";
import {Inter} from "next/font/google";
import {Elements} from "@stripe/react-stripe-js";
import {loadStripe} from "@stripe/stripe-js";
const inter = Inter({subsets: ["latin"]});
export const metadata: Metadata = {
title: "EnCoach",
description: "We are the best service and the only one",
};
export default function RootLayout({children}: {children: React.ReactNode}) {
return (
<html lang="en">
<head>
<link rel="icon" href="/favicon.ico" sizes="any" />
<script async src="https://js.stripe.com/v3/pricing-table.js" />
</head>
<body className={inter.className}>{children}</body>
</html>
);
}