4 Commits

Author SHA1 Message Date
8bb93a65a1 Update src/app/page.tsx 2026-03-04 07:06:00 +00:00
0ad90f9155 Update src/app/layout.tsx 2026-03-04 07:06:00 +00:00
e7b6705468 Merge version_3 into main
Merge version_3 into main
2026-03-04 06:56:48 +00:00
6f182acf64 Merge version_3 into main
Merge version_3 into main
2026-03-04 06:55:44 +00:00
2 changed files with 18 additions and 9 deletions

View File

@@ -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: `

View File

@@ -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>