diff --git a/src/app/page.tsx b/src/app/page.tsx
index 32247b4..30512bc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -7,10 +7,12 @@ import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
-import FooterCard from "@/components/sections/footer/FooterCard";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Plane, Compass, Instagram, Facebook, Linkedin } from "lucide-react";
+import BlogCardOne from '@/components/sections/blog/BlogCardOne';
+import ContactCTA from '@/components/sections/contact/ContactCTA';
+import FooterCard from "@/components/sections/footer/FooterCard";
export default function LuxuryTravelAgencyTemplatePage() {
return (
@@ -32,46 +34,47 @@ export default function LuxuryTravelAgencyTemplatePage() {
{ name: "About", id: "about" },
{ name: "Services", id: "services" },
{ name: "Destinations", id: "destinations" },
+ { name: "Blog", id: "blog" },
{ name: "Reviews", id: "reviews" },
- { name: "Contact", id: "/contact" },
+ { name: "Contact", href: "/contact" },
]}
- brandName="Luxuria"
- button={{ text: "Plan Your Trip", href: "/contact" }}
+ brandName="Maritime Solutions"
+ button={{ text: "Connect With Us", href: "/contact" }}
/>
+
+
);
-}
\ No newline at end of file
+}