37 lines
660 B
TypeScript
37 lines
660 B
TypeScript
import type { Metadata } from "next";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import "../globals.css";
|
|
|
|
|
|
import Footer from "./_homeComponents/Footer";
|
|
import Header from "./_homeComponents/Header";
|
|
|
|
const geistSans = Geist({
|
|
variable: "--font-geist-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: "--font-geist-mono",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Winixco",
|
|
description: "ATS",
|
|
};
|
|
|
|
export default function PublicLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main>{children}</main>
|
|
<Footer />
|
|
</>
|
|
);
|
|
}
|