From c646402b6a3d6f00c2d1663b27f19a49d4c6a596 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 07:59:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82a5b29..5a7decc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Inter } from "next/font/google"; export const metadata: Metadata = { - title: 'Hook Hospitality | Asian Restaurant & Lounge Kathmandu', - description: 'Hook Hospitality: Kathmandu\'s premier Asian restaurant and lounge. Fine dining, intimate lounge bar experience, and premium events in the heart of Kathmandu.', + title: 'Welcome to Our Platform', + description: 'Premium innovation and services.', openGraph: { "title": "Hook Hospitality | Dine & Unwind in Kathmandu", "description": "Experience premium Asian flavors at Kathmandu's top-rated lounge bar.", -- 2.49.1 From aa577049be2a080963424a142b9cd888ac97cd7e Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 6 Apr 2026 07:59:59 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 244 ++++++++++++++++++----------------------------- 1 file changed, 93 insertions(+), 151 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 5d2f051..3e93e14 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,166 +1,108 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import SplitAbout from '@/components/sections/about/SplitAbout'; +import ProductCardThree from '@/components/sections/product/ProductCardThree'; +import FeatureCardSixteen from '@/components/sections/feature/FeatureCardSixteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import Link from "next/link"; +import { Star, Shield, ArrowRight } from "lucide-react"; + +export default function Page() { + const navItems = [{ name: "Home", id: "/" }]; -export default function LandingPage() { return ( - - - -
- -
- -
- -
- - - -
- -
- -
- -
- -
- -
- - -
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
); } \ No newline at end of file -- 2.49.1