Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 07:42:01 +00:00
2 changed files with 15 additions and 47 deletions

View File

@@ -1,54 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "MAA Opticals - Premium Optical Store in Surat | Eye Testing & Eyewear", description: "MAA Opticals is your trusted optical store in Surat offering professional eye testing, prescription glasses, sunglasses, and contact lenses. Premium frames and accurate vision care.", keywords: "optical store in Surat, eye testing Surat, prescription glasses Surat, best optical shop Surat, eyewear, sunglasses, contact lenses", robots: {
index: true,
follow: true,
},
openGraph: {
title: "MAA Opticals - Premium Eyewear & Professional Eye Testing", description: "Visit MAA Opticals for accurate eye testing, stylish frames, and premium eyewear in Surat. Your trusted local optical store.", type: "website", siteName: "MAA Opticals", images: [
{
url: "http://img.b2bpic.net/free-photo/young-girl-eyes-consult_23-2148919981.jpg", alt: "MAA Opticals - Premium Optical Store"},
],
},
twitter: {
card: "summary_large_image", title: "MAA Opticals - Trusted Optical Store in Surat", description: "Professional eye testing and premium eyewear. Visit us for stylish frames and accurate prescriptions.", images: ["http://img.b2bpic.net/free-photo/young-girl-eyes-consult_23-2148919981.jpg"],
},
};
title: "MAA Opticals | Premium Eye Care & Eyewear in Surat", description: "Professional eye testing and stylish eyewear solutions at MAA Opticals in Surat. Experience accurate prescriptions and premium frames that enhance your vision and style."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -128,19 +128,19 @@ export default function LandingPage() {
carouselMode="buttons"
features={[
{
title: "Eye Testing", description: "Accurate eye examination with advanced testing equipment for correct prescriptions and eye health assessment.", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-eyes-consult_23-2148919981.jpg?_wi=2", imageAlt: "Professional eye testing service"
title: "See Clearly Every Day", description: "Professional eye examination with advanced testing equipment to ensure accurate prescriptions and optimal vision for your daily activities.", imageSrc: "http://img.b2bpic.net/free-photo/young-girl-eyes-consult_23-2148919981.jpg?_wi=2", imageAlt: "Professional eye testing service"
},
{
title: "Prescription Glasses", description: "High-quality prescription lenses with durable, stylish frames customized to your vision requirements.", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-standing-by-window-airport_1303-19703.jpg?_wi=2", imageAlt: "Prescription glasses collection"
title: "Perfect Vision, Perfect Style", description: "High-quality prescription lenses with durable, stylish frames that not only correct your vision but also enhance your personal style.", imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-man-standing-by-window-airport_1303-19703.jpg?_wi=2", imageAlt: "Prescription glasses collection"
},
{
title: "Sunglasses", description: "Fashionable sunglasses with UV protection to keep your eyes safe while maintaining your style.", imageSrc: "http://img.b2bpic.net/free-photo/romantic-young-couple-have-fun-otdoor_1328-4676.jpg?_wi=2", imageAlt: "Premium sunglasses collection"
title: "Protect & Shine", description: "Fashionable sunglasses with UV protection that keeps your eyes safe from harmful rays while making you look amazing.", imageSrc: "http://img.b2bpic.net/free-photo/romantic-young-couple-have-fun-otdoor_1328-4676.jpg?_wi=2", imageAlt: "Premium sunglasses collection"
},
{
title: "Contact Lenses", description: "Comfortable contact lenses with expert guidance on proper use, care, and maintenance.", imageSrc: "http://img.b2bpic.net/free-photo/hot-beautiful-blond-woman-model-with-fresh-daily-makeup-with-dark-lips-color-clean-healthy-skin-red-background-glasses_158538-10475.jpg?_wi=2", imageAlt: "Contact lens consultation"
title: "Comfort All Day Long", description: "Comfortable contact lenses with expert guidance on proper use, care, and maintenance for hassle-free vision correction.", imageSrc: "http://img.b2bpic.net/free-photo/hot-beautiful-blond-woman-model-with-fresh-daily-makeup-with-dark-lips-color-clean-healthy-skin-red-background-glasses_158538-10475.jpg?_wi=2", imageAlt: "Contact lens consultation"
},
{
title: "Frame Adjustments", description: "Professional frame adjustments and maintenance services to ensure perfect fit and comfort.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-child-looking-camera-home_1301-3991.jpg?_wi=2", imageAlt: "Frame adjustment service"
title: "The Perfect Fit", description: "Professional frame adjustments and maintenance services to ensure your eyewear fits perfectly and stays comfortable all day.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-child-looking-camera-home_1301-3991.jpg?_wi=2", imageAlt: "Frame adjustment service"
},
]}
/>
@@ -232,4 +232,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}