feat: scaffold Next.js landing page app at apps/landing

This commit is contained in:
ashim-hq
2026-04-23 17:19:48 +08:00
parent 136a4dd641
commit 2260d696bc
11 changed files with 807 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
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",
},
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.",
},
};
export default function RootLayout({ children }: { children: React.ReactNode }) {
return (
<html lang="en" className={inter.variable}>
<body className="bg-background text-foreground font-[family-name:var(--font-inter)] antialiased">
{children}
</body>
</html>
);
}