Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a67867f5fd | |||
| 3bd585e4c2 | |||
| 72414875ed | |||
| 751aba214a | |||
| bca968b838 | |||
| 97ab6136d2 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -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="Beschikbaar vandaag tot 18:00 uur. Bel nu voor uw gratis diagnose. Pc Oké helpt u snel aan een werkende computer. +31 (0)6 XXXX XXXX"
|
||||||
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}
|
||||||
@@ -151,4 +151,4 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user