4 Commits

Author SHA1 Message Date
91931bc59b Update src/app/layout.tsx 2026-03-07 01:55:07 +00:00
a95587ce3c Merge version_1 into main
Merge version_1 into main
2026-03-07 01:51:45 +00:00
1e8098145e Merge version_1 into main
Merge version_1 into main
2026-03-07 01:50:54 +00:00
068a96c592 Merge version_1 into main
Merge version_1 into main
2026-03-07 01:49:21 +00:00

View File

@@ -1,51 +1,25 @@
import type { Metadata } from "next";
import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const publicSans = Public_Sans({
variable: "--font-public-sans", subsets: ["latin"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
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"),
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,
},
};
title: "Kortex - Privacy First Browser Assistant", description: "Organize your chaotic tabs into clean, focused workspaces. No accounts. No tracking. Just clarity and simplicity."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1413,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}