39 lines
1018 B
TypeScript
39 lines
1018 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import Nav from "@/components/Nav";
|
|
import Footer from "@/components/Footer";
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Verimund Solutions",
|
|
description: "Finance-specialized SaaS tools for serious investors.",
|
|
openGraph: {
|
|
title: "Verimund Solutions",
|
|
description: "Finance-specialized SaaS tools for serious investors.",
|
|
url: "https://verimundsolutions.com",
|
|
siteName: "Verimund Solutions",
|
|
type: "website",
|
|
},
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" className={`${inter.variable}`}>
|
|
<body className="min-h-screen flex flex-col" style={{ fontFamily: "var(--font-inter), sans-serif" }}>
|
|
<Nav />
|
|
<main className="flex-1">{children}</main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|