From 91931bc59bc477cded38c0c5e7247a03c1db83a1 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 01:55:07 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++++------------------------------------ 1 file changed, 9 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 553aa0f..17f9239 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + + {children} +