Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 91931bc59b |
@@ -1,51 +1,25 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./styles/variables.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/base.css";
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Kortex - AI Browser Assistant for Tab Organization", description: "Organize your chaotic browser tabs with Kortex. Free, private, and no subscriptions. One-click cleanup, RAM check, and total data privacy.", keywords: "browser extension, tab organizer, productivity tool, privacy-first, RAM optimizer, Chrome extension", metadataBase: new URL("https://kortex.space"),
|
title: "Kortex - Privacy First Browser Assistant", description: "Organize your chaotic tabs into clean, focused workspaces. No accounts. No tracking. Just clarity and simplicity."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://kortex.space"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Kortex - Organize Your Chaotic Browser", description: "The privacy-first AI browser assistant that cleans up your tabs and saves your sanity.", url: "https://kortex.space", siteName: "Kortex", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab4PeeCOaWvjl3uaSBZH5ifCjR/a-sleek-minimalist-browser-sidebar-inter-1772848099410-8ac55d63.png", alt: "Kortex organized browser sidebar"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Kortex - Organize Your Browser", description: "Free, private, unlimited tab organization. No accounts. No tracking.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab4PeeCOaWvjl3uaSBZH5ifCjR/a-sleek-minimalist-browser-sidebar-inter-1772848099410-8ac55d63.png"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.variable}>
|
||||||
<body
|
{children}
|
||||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1387,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user