import Header from "@/components/header"; import { Spacer } from "@nextui-org/spacer"; import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { Providers } from "./providers"; import { Analytics } from "@vercel/analytics/react"; import { Link } from "@nextui-org/link"; const inter = Inter({ subsets: ["latin"], display: "swap", }); export const metadata: Metadata = { metadataBase: new URL("https://presale.welshare.health"), title: { default: "Welshare Presale Phase 1", template: "%s | Welshare Presale Phase 1", }, description: "Apply for the $WEL Token now - Welshare Presale Phase 1", publisher: "Welshare Health UG", authors: [ { name: "Stefan Adolf", }, ], }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (

Public Pre-Sale Phase 1

{children}
Privacy Policy
); }