Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-04 12:46:51 +00:00
2 changed files with 9 additions and 44 deletions

View File

@@ -1,54 +1,20 @@
import type { Metadata } from "next";
import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Leyton Dental Surgery - Trusted Dentist in Leyton, London E10", description: "Professional dental care in Leyton, London. General, cosmetic, emergency dentistry & more. Book your appointment today. 229 High Road, E10 5QE.", keywords: "dentist Leyton, dental surgery London E10, teeth cleaning, dental implants, cosmetic dentistry, emergency dental care", metadataBase: new URL("https://www.leytondentalcare.co.uk/"),
alternates: {
canonical: "https://www.leytondentalcare.co.uk/"
},
openGraph: {
title: "Leyton Dental Surgery - Your Smile is Our Priority", description: "Trusted dental care in Leyton, London. Schedule your appointment with experienced dentists today.", url: "https://www.leytondentalcare.co.uk/", siteName: "Leyton Dental Surgery", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg", alt: "Leyton Dental Surgery - Modern dental clinic"
}
]
},
twitter: {
card: "summary_large_image", title: "Leyton Dental Surgery - Professional Dental Care", description: "Quality dental services in Leyton, London. Emergency & routine care available. Book now!", images: ["http://img.b2bpic.net/free-photo/dentist-s-office-interior-with-modern-chair-special-dentisd-equipment-interior-stomatology-clinic_482257-11998.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Leyton Dental Surgery | Trusted Dental Care in Leyton, London", description: "Professional dental care in Leyton, London. General dentistry, cosmetic treatments, emergency appointments, and more. Book your appointment today."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${poppins.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -10,7 +10,7 @@ import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCa
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Heart, Smile, Users, Star, HelpCircle, Mail } from 'lucide-react';
import { Heart, Smile, Users, Star, HelpCircle, Mail, AlertCircle } from 'lucide-react';
export default function LandingPage() {
return (
@@ -99,10 +99,10 @@ export default function LandingPage() {
title: "General Dentistry", description: "Regular check-ups, cleanings, fillings, and preventative care to maintain your oral health.", imageSrc: "http://img.b2bpic.net/free-photo/female-patient-opening-her-mouth-doctor-look-her-throat-otolaryngologist-examines-sore-throat-patient_657921-196.jpg?_wi=2", imageAlt: "General dentistry", button: { text: "Learn More", href: "#services" }
},
{
title: "Cosmetic Dentistry", description: "Teeth whitening, veneers, and smile makeovers to enhance your appearance and confidence.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-young-beautiful-smiling-woman-looking-trendy-girl-casual-summer-hoodie-skirt-clothes_158538-1429.jpg?_wi=2", imageAlt: "Cosmetic dentistry", button: { text: "Learn More", href: "#services" }
title: "Emergency Dental Care", description: "Same-day appointments for dental emergencies, including pain relief and urgent treatment. We keep emergency slots available throughout the week.", imageSrc: "http://img.b2bpic.net/free-photo/medical-nurse-examining-patient-paing-writing-dental-problem-clipboard-while-sitting-dental-hospital-office_482257-4882.jpg?_wi=2", imageAlt: "Emergency care", button: { text: "Learn More", href: "#services" }
},
{
title: "Emergency Dental Care", description: "Same-day appointments for dental emergencies, including pain relief and urgent treatment.", imageSrc: "http://img.b2bpic.net/free-photo/medical-nurse-examining-patient-paing-writing-dental-problem-clipboard-while-sitting-dental-hospital-office_482257-4882.jpg?_wi=2", imageAlt: "Emergency care", button: { text: "Learn More", href: "#services" }
title: "Cosmetic Dentistry", description: "Teeth whitening, veneers, and smile makeovers to enhance your appearance and confidence.", imageSrc: "http://img.b2bpic.net/free-photo/closeup-portrait-young-beautiful-smiling-woman-looking-trendy-girl-casual-summer-hoodie-skirt-clothes_158538-1429.jpg?_wi=2", imageAlt: "Cosmetic dentistry", button: { text: "Learn More", href: "#services" }
},
{
title: "Orthodontics", description: "Professional teeth straightening with braces and clear aligners for a perfectly aligned smile.", imageSrc: "http://img.b2bpic.net/free-photo/male-patient-with-cofferdam-mouth-showing-teeth-with-braces_651396-3439.jpg", imageAlt: "Orthodontics", button: { text: "Learn More", href: "#services" }