diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 47c0a28..e3e518d 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,54 +1,18 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Open_Sans } 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 openSans = Open_Sans({
- variable: "--font-open-sans", subsets: ["latin"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
export const metadata: Metadata = {
- title: "Custom Software Development | Blink22", description: "Build scalable, profitable software with Blink22. Expert custom development for ambitious businesses. Get your free project estimate today.", keywords: "custom software development, web applications, mobile development, software agency", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Custom Software Development | Blink22", description: "Transform your ideas into profitable software. Scalable solutions for ambitious businesses.", type: "website", siteName: "Blink22", images: [
- {
- url: "http://img.b2bpic.net/free-vector/hand-drawn-retro-computer-windows-element_23-2150374707.jpg", alt: "Blink22 Software Development"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Custom Software Development | Blink22", description: "Build profitable software with expert developers. Get your free estimate.", images: ["http://img.b2bpic.net/free-vector/hand-drawn-retro-computer-windows-element_23-2150374707.jpg"],
- },
-};
+ title: "Blink22 - Custom Software Development", description: "Transform your business with scalable, custom software solutions"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-