diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 36d73f6..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "Profile UI Design System - Customizable Templates", description: "A modern, adaptable profile design system for any brand. Features clean layouts, professional components, and full responsive design for tech, agencies, and creative companies.", keywords: "profile design, UI components, design system, responsive layout, customizable template", metadataBase: new URL("https://profileuisystem.com"), - alternates: { - canonical: "https://profileuisystem.com" - }, - openGraph: { - title: "Profile UI Design System - Customizable Templates", description: "A modern, adaptable profile design system for any brand. Professional, scalable, and accessible.", url: "https://profileuisystem.com", siteName: "Profile UI Design System", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/email-signature-collection-gradient-style_23-2147835168.jpg", alt: "Profile UI Design System" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Profile UI Design System - Customizable Templates", description: "A modern, adaptable profile design system for any brand.", images: ["http://img.b2bpic.net/free-vector/email-signature-collection-gradient-style_23-2147835168.jpg"] - }, - robots: { - index: true, - follow: true - } -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -