diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index c36d5d0..24e3fde 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -61,7 +61,7 @@ export default function AboutPage() { description="With 5+ years of experience in digital design and development, I specialize in creating meaningful digital experiences that drive business growth. My journey has been defined by a commitment to excellence, innovation, and delivering exceptional results for every client." subdescription="I combine strategic thinking with creative execution to deliver solutions that exceed expectations. My approach is collaborative, innovative, and results-driven. I believe in understanding not just what clients need, but why they need it, allowing me to craft solutions that truly resonate with their audience." icon={CheckCircle} - imageSrc="http://img.b2bpic.net/free-photo/close-up-portrait-pretty-mulatto-woman-with-trendy-make-up-standing-with-arms-crossed-office-indoor-photo-female-black-employee-posing-with-international-colleagues-gently-smile_197531-3788.jpg" + imageSrc="http://img.b2bpic.net/free-photo/close-up-portrait-pretty-mulatto-woman-with-trendy-make-up-standing-with-arms-crossed-office-indoor-photo-female-black-employee-posing-with-international-colleagues-gently-smile_197531-3788.jpg?_wi=2" imageAlt="Professional portrait" mediaAnimation="slide-up" useInvertedBackground={false} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..615d547 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { DM_Sans } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Professional Portfolio - Creative Designer & Developer", + description: "Explore my creative portfolio showcasing web design, development, and branding projects. Let's collaborate on your next digital project.", + keywords: "portfolio, web design, development, branding, creative services", + metadataBase: new URL("https://yourportfolio.com"), + alternates: { + canonical: "https://yourportfolio.com", + }, + openGraph: { + title: "Professional Portfolio - Creative Designer & Developer", + description: "Explore my creative portfolio showcasing web design, development, and branding projects.", + url: "https://yourportfolio.com", + siteName: "My Portfolio", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/close-up-indoor-portrait-lovable-charming-business-lady-with-collected-hair-wearing-dark-jacket-headphones-is-working-laptop-modern-stylish-light-office_291650-2481.jpg", + alt: "Portfolio showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Professional Portfolio - Creative Designer & Developer", + description: "Explore my creative portfolio showcasing web design, development, and branding projects.", + images: [ + "http://img.b2bpic.net/free-photo/close-up-indoor-portrait-lovable-charming-business-lady-with-collected-hair-wearing-dark-jacket-headphones-is-working-laptop-modern-stylish-light-office_291650-2481.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +66,9 @@ export default function RootLayout({ return ( - + {children}