Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 23:38:57 +00:00
2 changed files with 9 additions and 57 deletions

View File

@@ -1,67 +1,20 @@
import type { Metadata } from "next";
import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "The Village Printer | Local Printing in Saukville, WI",
description: "Professional local printing services in Saukville, Wisconsin. Business cards, flyers, banners, and custom printing with fair pricing and fast turnaround.",
keywords: "print shop Saukville WI, local printing, business cards, flyers, signs, custom printing",
metadataBase: new URL("https://www.villageprinter.com"),
alternates: {
canonical: "https://www.villageprinter.com",
},
openGraph: {
title: "The Village Printer - Local Printing in Saukville, WI",
description: "Professional printing services for businesses and individuals. Fair pricing, quality results, fast turnaround.",
url: "https://www.villageprinter.com",
siteName: "The Village Printer",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/young-female-client-store-is-trying-different-frames-her-small-canvas-is-talking-with-attractive-male-employee_662251-239.jpg",
alt: "The Village Printer shop",
},
],
},
twitter: {
card: "summary_large_image",
title: "The Village Printer - Local Printing in Saukville",
description: "Professional printing services. Business cards, flyers, banners, and more. Fair prices, quality guaranteed.",
images: ["http://img.b2bpic.net/free-photo/young-female-client-store-is-trying-different-frames-her-small-canvas-is-talking-with-attractive-male-employee_662251-239.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "The Village Printer", description: "Professional printing services in Saukville, Wisconsin"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1429,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -77,7 +77,7 @@ export default function HomePage() {
tagAnimation="slide-up"
background={{ variant: "plain" }}
buttons={[
{ text: "Call Now", href: "tel:+12625599395" },
{ text: "Get Free Quote", href: "tel:+12625599395" },
{ text: "Request a Quote", href: "/contact" },
]}
buttonAnimation="slide-up"
@@ -222,4 +222,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}