diff --git a/src/app/layout.tsx b/src/app/layout.tsx index d0941d6..74701bc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,37 +1,31 @@ import type { Metadata } from "next"; -import { Source_Sans_3 } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Manrope } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; -const sourceSans3 = Source_Sans_3({ - variable: "--font-source-sans-3", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); +const manrope = Manrope({ + variable: "--font-manrope", subsets: ["latin"], +}); + export const metadata: Metadata = { - title: "Dev & Strings - Tech Developer & Acoustic Guitarist", description: "Portfolio of a full-stack developer passionate about technology and acoustic music. Explore projects, skills, and collaborations.", keywords: "developer, programmer, acoustic guitar, music, portfolio, full-stack, web development", robots: { + title: "PC & Server Enthusiast - Hardware & Infrastructure", description: "Passionate about building high-performance PC systems and enterprise server infrastructure. Explore my projects, setups, and technical expertise.", keywords: "PC building, servers, hardware, infrastructure, gaming PC, workstation, data center, tech enthusiast", robots: { index: true, follow: true, }, openGraph: { - title: "Dev & Strings - Tech Developer & Acoustic Guitarist", description: "Discover how code and creativity come together", url: "https://devstrings.com", siteName: "Dev & Strings", type: "website", images: [ + title: "PC & Server Enthusiast - Hardware & Infrastructure", description: "Discover my passion for building and optimizing computer systems", url: "https://pcserver.com", siteName: "PC & Server Central", type: "website", images: [ { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARAYHcycoyLEmpoLoZFpUdqzJ8/a-professional-portrait-of-a-tech-enthus-1772545157810-a8854352.png", alt: "Tech enthusiast with acoustic guitar"}, + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARAYHcycoyLEmpoLoZFpUdqzJ8/a-professional-portrait-of-a-tech-enthus-1772545157810-a8854352.png", alt: "PC and server hardware"}, ], }, twitter: { - card: "summary_large_image", title: "Dev & Strings - Tech & Music", description: "Full-stack developer and passionate acoustic guitarist", images: [ + card: "summary_large_image", title: "PC & Server Enthusiast", description: "Passionate about hardware, infrastructure, and high-performance systems", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARAYHcycoyLEmpoLoZFpUdqzJ8/a-professional-portrait-of-a-tech-enthus-1772545157810-a8854352.png"], }, }; @@ -45,7 +39,7 @@ export default function RootLayout({ {children} diff --git a/src/app/page.tsx b/src/app/page.tsx index 473ab68..aa95038 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,31 +8,31 @@ import FeatureCardThree from "@/components/sections/feature/featureCardThree/Fea import ProductCardThree from "@/components/sections/product/ProductCardThree"; import TestimonialCardSixteen from "@/components/sections/testimonial/TestimonialCardSixteen"; import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterMedia from "@/components/sections/footer/FooterMedia"; -import { Sparkles, Music, Code, Lightbulb, BookOpen, Mail } from "lucide-react"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Zap, Monitor, Cpu, HardDrive, Gauge, Wrench, Mail, Shield } from "lucide-react"; export default function LandingPage() { return (