Files
SnapOtter/apps/landing/src/app/layout.tsx
T

46 lines
1.4 KiB
TypeScript
Raw Normal View History

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "@/styles/globals.css";
const inter = Inter({ subsets: ["latin"], variable: "--font-inter" });
export const metadata: Metadata = {
title: "SnapOtter | Self-Hosted Image Processing",
description:
"50+ image processing tools with local AI. Runs 100% offline. No data leaves your network. Open source and free forever.",
metadataBase: new URL("https://snapotter.com"),
openGraph: {
title: "SnapOtter | Self-Hosted Image Processing",
description:
"50+ image processing tools with local AI. Runs 100% offline. No data leaves your network.",
url: "https://snapotter.com",
siteName: "SnapOtter",
type: "website",
2026-04-23 17:31:17 +08:00
images: [
{
url: "/og-image.svg",
width: 1200,
height: 630,
alt: "SnapOtter | Self-Hosted Image Processing",
2026-04-23 17:31:17 +08:00
},
],
},
twitter: {
card: "summary_large_image",
title: "SnapOtter | Self-Hosted Image Processing",
description:
"50+ image processing tools with local AI. Runs 100% offline. No data leaves your network.",
2026-04-23 17:31:17 +08:00
images: ["/og-image.svg"],
},
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={inter.variable} suppressHydrationWarning>
<body className="bg-background text-foreground font-[family-name:var(--font-inter)] antialiased">
{children}
</body>
</html>
);
}