From 8af6cd737609888fdd89998c69380a8a5793ba90 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:18:46 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 47 ++++++++-------------------------------------- 1 file changed, 8 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7b719b3..2ee6536 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,52 +1,22 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; +import "./styles/variables.css"; +import "./styles/base.css"; 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "HappyPrint Advertising - Professional Printing & Advertising Solutions", description: "Quality printing, graphic design, and advertising services for national and multinational companies. Fast delivery, creative solutions, and trusted expertise since 2007.", keywords: "printing services, advertising, graphic design, large format printing, digital printing, signage, branding", metadataBase: new URL("https://happyprint.com.ph"), - alternates: { - canonical: "https://happyprint.com.ph"}, - openGraph: { - title: "HappyPrint Advertising Inc. - Excellence in Printing & Advertising", description: "Transform your brand vision into reality with professional printing and advertising solutions.", url: "https://happyprint.com.ph", siteName: "HappyPrint Advertising Inc.", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/side-view-women-using-printer-work_23-2149713668.jpg", alt: "HappyPrint professional printing services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "HappyPrint Advertising - Professional Printing Solutions", description: "High-quality printing and advertising services trusted by corporate clients.", images: ["http://img.b2bpic.net/free-photo/side-view-women-using-printer-work_23-2149713668.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "HappyPrint Advertising Inc. - Professional Printing & Advertising Solutions", description: "High-quality printing, advertising, and fabrication solutions since 2007. Trusted by national and multinational companies."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}