diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 871a79f..bd926a8 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,60 +1,43 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Inter_Tight } 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"],
-});
+import { ServiceWrapper } from "@/components/service/ServiceWrapper";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
-});
-
-const interTight = Inter_Tight({
- variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
- title: "HomeWare | Premium Kitchen & Home Accessories", description: "Discover premium kitchen and home accessories. Curated selection of quality cookware, dinnerware, and organizational solutions for modern living.", keywords: "kitchen accessories, home goods, cookware, dinnerware, kitchen tools, home decor, premium kitchenware", metadataBase: new URL("https://homeware.com"),
- alternates: {
- canonical: "https://homeware.com"
- },
- openGraph: {
- title: "HomeWare | Premium Kitchen & Home Accessories", description: "Elevate your kitchen and home with our curated collection of premium accessories. Quality, style, and functionality in every piece.", type: "website", siteName: "HomeWare", images: [
- {
- url: "http://img.b2bpic.net/free-photo/slice-bread-with-oil-bottle-against-white-wall_23-2147853746.jpg", alt: "HomeWare premium kitchen accessories"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "HomeWare | Premium Kitchen & Home Accessories", description: "Discover premium kitchen and home accessories for modern living.", images: ["http://img.b2bpic.net/free-photo/slice-bread-with-oil-bottle-against-white-wall_23-2147853746.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "HomeWare - Premium Kitchen & Home Accessories", description: "Discover our curated collection of premium kitchen and home accessories designed for modern living. Quality, style, and functionality in every piece."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
+
+
+
+
+
{children}
-
+
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 9a794a4..6af9dbd 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -7,11 +7,16 @@ import ProductCardFour from '@/components/sections/product/ProductCardFour';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
-import ContactSplit from '@/components/sections/contact/ContactSplit';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
-import { Sparkles, Award, CheckCircle, Mail } from "lucide-react";
+import { Sparkles, Award, CheckCircle, Mail, MapPin, Phone } from "lucide-react";
export default function LandingPage() {
+ const handleContactSubmit = (data: Record) => {
+ console.log('Contact form submitted:', data);
+ // Handle form submission here
+ };
+
return (
-