diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e258847..c888a81 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,51 +1,23 @@
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/base.css";
+import "./styles/variables.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "Kompyuter Design | Strategic Design Studio", description: "Kompyuter Design creates compelling brand identities, digital experiences, and strategic design solutions that transform businesses and engage audiences.", keywords: "design studio, brand identity, web design, digital design, creative agency, UI/UX design, branding", metadataBase: new URL("https://www.kompyuterdesign.com"),
- alternates: {
- canonical: "https://www.kompyuterdesign.com"},
- openGraph: {
- title: "Kompyuter Design | Strategic Design Studio", description: "Transform your brand with strategic design solutions that connect, engage, and inspire.", url: "https://www.kompyuterdesign.com", siteName: "Kompyuter Design", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/lovely-female-working-art-studio_23-2148372141.jpg", alt: "Kompyuter Design Studio Work"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Kompyuter Design | Strategic Design Studio", description: "Award-winning design studio creating brand identities and digital experiences.", images: ["http://img.b2bpic.net/free-photo/lovely-female-working-art-studio_23-2148372141.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "Kiber Xavfsizlik", description: "Cybersecurity solutions and services"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-