diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index b0b11d2..4550e25 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,45 +1,16 @@
import type { Metadata } from "next";
-import { Libre_Baskerville } from "next/font/google";
-import { Inter } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const libreBaskerville = Libre_Baskerville({
- variable: "--font-libre-baskerville", subsets: ["latin"],
- weight: ["400", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
export const metadata: Metadata = {
- title: "Professional Portfolio - Creative Designer & Strategist", description: "Explore my portfolio showcasing strategic design solutions and digital projects. Specializing in branding, user experience, and digital transformation.", keywords: "portfolio, design, creative, UX, branding, digital design, strategist", openGraph: {
- title: "Professional Portfolio - Creative Designer & Strategist", description: "Explore my portfolio showcasing strategic design solutions and digital projects.", url: "https://portfolio.example.com", siteName: "Portfolio", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/view-office-desk-with-messy-workspace-laptop_23-2150282085.jpg", alt: "Portfolio showcase"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Professional Portfolio - Creative Designer & Strategist", description: "Explore my portfolio showcasing strategic design solutions and digital projects.", images: ["http://img.b2bpic.net/free-photo/view-office-desk-with-messy-workspace-laptop_23-2150282085.jpg"],
- },
-};
+ title: "Portfolio", description: "Creative Professional & Design Strategist"};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-