All checks were successful
Build and Deploy NextJS SculptedArc Website / build-and-deploy (push) Successful in 1m44s
54 lines
1.4 KiB
TypeScript
54 lines
1.4 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import "./globals.css";
|
|
import SiteHeader from '../components/site-header';
|
|
import Footer from "@/components/footer";
|
|
import favicon from "../assets/scws-logo-no-bg.png"
|
|
|
|
const geistSans = Geist({
|
|
variable: "--font-geist-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const geistMono = Geist_Mono({
|
|
variable: "--font-geist-mono",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Sculpted Arc",
|
|
description: "Web and software solutions for companies and people around the world",
|
|
};
|
|
|
|
export const viewport = {
|
|
width: "device-width",
|
|
initialScale: 1,
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html
|
|
lang="en"
|
|
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
|
>
|
|
<head>
|
|
<link rel="icon" href={favicon.src} />
|
|
</head>
|
|
|
|
<body className="min-h-full flex flex-col dark:bg-black dark">
|
|
<SiteHeader />
|
|
<div className="flex min-h-screen flex-col bg-zinc-50 font-sans dark:bg-black">
|
|
<main className="mx-auto flex w-full max-w-7xl flex-1 flex-col items-center justify-between bg-white px-8 py-32 dark:bg-black sm:items-start">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|