zpsajst's picture
Initial commit with environment variables for API keys
2398be6
raw
history blame
885 Bytes
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import "../styles/ripple.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "LinkScout - AI-Powered Link Intelligence Platform",
description: "Transform how you discover, organize, and leverage web content with AI-powered insights and intelligent link management.",
icons: {
icon: '/icon.svg',
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}