Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8bb93a65a1 | |||
| 0ad90f9155 | |||
| e7b6705468 | |||
| 6f182acf64 |
@@ -1,14 +1,21 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from 'next';
|
||||||
import { Inter } from "next/font/google";
|
import { Geist, Geist_Mono } from 'next/font/google';
|
||||||
import "./globals.css";
|
import './globals.css';
|
||||||
|
|
||||||
const inter = Inter({
|
const geist = Geist({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: '--font-geist-sans',
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
subsets: ['latin'],
|
||||||
|
});
|
||||||
|
|
||||||
|
const geistMono = Geist_Mono({
|
||||||
|
variable: '--font-geist-mono',
|
||||||
|
subsets: ['latin'],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "M&T Kelly - Geelong Electrical Services", description: "Professional electrical services in Geelong. Residential, commercial, solar, and emergency solutions."};
|
title: 'M&T Kelly Electrical Services',
|
||||||
|
description: 'Professional electrical services in Geelong',
|
||||||
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
@@ -17,7 +24,9 @@ export default function RootLayout({
|
|||||||
}) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<body className={`${inter.variable}`}>{children}
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
|
{children}
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
|
|||||||
@@ -108,7 +108,7 @@ const page = () => {
|
|||||||
mediaAnimation="none"
|
mediaAnimation="none"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Book Service", href: "#contact" },
|
{ text: "Book Service", href: "#contact" },
|
||||||
{ text: "Learn More", href: "#services" }
|
{ text: "View All Services", href: "#services" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user