3 Commits

Author SHA1 Message Date
751aba214a Update src/app/page.tsx 2026-03-07 08:04:29 +00:00
bca968b838 Update src/app/layout.tsx 2026-03-07 08:04:28 +00:00
97ab6136d2 Merge version_1 into main
Merge version_1 into main
2026-03-07 08:02:24 +00:00
2 changed files with 9 additions and 45 deletions

View File

@@ -1,55 +1,20 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google"; import { Inter } from "next/font/google";
import { Roboto } from "next/font/google"; import "@/styles/globals.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const roboto = Roboto({
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Pc Oké - Snelle Laptop & Computer Reparatie", description: "Professionele computer reparatie met garantie snelle service. Hardware herstel, snelheidsboost en software support tegen eerlijke prijzen. Binnen 48 uur opgelost.", keywords: "computer reparatie, laptop reparatie, hardware herstel, snelle service, pc support", robots: { title: "Pc Oké - Snelle Laptop & Computer Reparatie", description: "Professionele computer- en laptopreparatie. Snelle service, eerlijke prijzen, vakkundige technicians. Gratis diagnose!"};
index: true,
follow: true,
},
openGraph: {
title: "Pc Oké - Computer Reparatie", description: "Uw computer verdient het beste. Snelle reparaties, vakkundige service, eerlijke prijzen.", siteName: "Pc Oké", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/master-holds-new-screen-replacement-disassembled-smartphone-his-laboratory-tool-kit-with-instruments-laptop-front-him-white-table-close-view_346278-1202.jpg", alt: "Professional computer repair service"},
],
},
twitter: {
card: "summary_large_image", title: "Pc Oké - Computer Reparatie", description: "Uw computer, weer als nieuw. Snelle reparaties binnen 48 uur.", images: ["http://img.b2bpic.net/free-photo/master-holds-new-screen-replacement-disassembled-smartphone-his-laboratory-tool-kit-with-instruments-laptop-front-him-white-table-close-view_346278-1202.jpg"],
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={inter.className}>{children}
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1417,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -131,11 +131,11 @@ export default function LandingPage() {
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactText
text="Klaar om uw computer weer aan het werk te krijgen? Bel ons vandaag of bring uw apparaat langs voor een gratis diagnose." text="Klaar om uw computer weer aan het werk te krijgen? Bel ons op +31 (0)6 XXXX XXXX of bring uw apparaat langs voor een gratis diagnose."
animationType="entrance-slide" animationType="entrance-slide"
buttons={[ buttons={[
{ text: "Bel ons", href: "tel:+31612345678" },
{ text: "Start uw reparatie", href: "#" }, { text: "Start uw reparatie", href: "#" },
{ text: "Bel ons: +31 (0)6 XXXX XXXX", href: "tel:+31612345678" },
]} ]}
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false} useInvertedBackground={false}