diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8b6682f..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,2810 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Lato } 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"], -}); - -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); - -export const metadata: Metadata = { - title: "StartupHub | Professional Web Solutions for Startups", - description: "Transform your startup vision into reality with our premium web design, branding, and digital marketing services. Trusted by 500+ innovative companies.", - keywords: "web design, startup solutions, branding agency, digital marketing, SaaS development", - metadataBase: new URL("https://startuphub.com"), - alternates: { - canonical: "https://startuphub.com", - }, - openGraph: { - title: "StartupHub | Professional Web Solutions for Startups", - description: "Transform your startup vision into reality with our premium web design, branding, and digital marketing services.", - url: "https://startuphub.com", - siteName: "StartupHub", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/full-shot-student-learning-exam_23-2149647123.jpg", - alt: "StartupHub - Professional Web Solutions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "StartupHub | Professional Web Solutions for Startups", - description: "Transform your startup vision into reality with premium web design, branding, and digital marketing.", - images: ["http://img.b2bpic.net/free-photo/full-shot-student-learning-exam_23-2149647123.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -