Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7708a09e96 | |||
| 53078775e2 | |||
| ad8bb461f8 | |||
| c230753e30 | |||
| 274a8b8446 | |||
| c3fb8ddc98 | |||
| ee9b73c04d | |||
| 18d8167595 | |||
| b307765940 | |||
| 64e2ac57f0 | |||
| d0d3fdd82c | |||
| 7c5c850f41 | |||
| 0476b297bb | |||
| ad9d054312 |
120
src/app/page.tsx
120
src/app/page.tsx
@@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||||
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
|
||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||||
import { Zap, ArrowRight } from "lucide-react";
|
import { Zap, Award, Star } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -27,130 +27,98 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
brandName="SAAR TECHNOLOGIES"
|
brandName="SAAR TECHNOLOGIES"
|
||||||
navItems={[
|
navItems={[
|
||||||
|
{ name: "Hero", id: "hero" },
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Social Proof", id: "social-proof" },
|
{ name: "Social Proof", id: "social-proof" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Footer", id: "footer" },
|
||||||
]}
|
]}
|
||||||
bottomLeftText="Innovation"
|
bottomLeftText="Innovation Hub"
|
||||||
bottomRightText="hello@saartechnologies.com"
|
bottomRightText="hello@saartechnologies.com"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Hero - Billboard Scroll */}
|
{/* Hero - Billboard Scroll */}
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboardSplit
|
<HeroBillboardScroll
|
||||||
logoText="SAAR TECHNOLOGIES"
|
title="Scale Your Enterprise Operations 10x Faster"
|
||||||
description="Cutting-edge solutions for modern businesses. Transform your operations with our advanced technology platform designed for scale and performance."
|
description="Harness cutting-edge innovations designed to scale with your business. From intelligent automation to data-driven insights, we deliver enterprise-grade solutions that transform operations."
|
||||||
background={{ variant: "radial-gradient" }}
|
tag="Next Generation Tech"
|
||||||
|
tagIcon={Zap}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Get Started", href: "#contact" },
|
{ text: "Explore Solutions", href: "#about" },
|
||||||
{ text: "Learn More", href: "#about" },
|
{ text: "Get Started", href: "#social-proof" },
|
||||||
]}
|
]}
|
||||||
layoutOrder="default"
|
background={{ variant: "plain" }}
|
||||||
buttonAnimation="slide-up"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* About - Inline Image Split Text */}
|
{/* About - Inline Image Split Text */}
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<InlineImageSplitTextAbout
|
<TextSplitAbout
|
||||||
heading={[
|
title="Why Choose SAAR TECHNOLOGIES"
|
||||||
{ type: "text", content: "Empowering businesses with" },
|
description={[
|
||||||
{ type: "text", content: "innovative" },
|
"We combine deep technological expertise with proven business methodology to deliver solutions that drive measurable results.", "Our team of industry veterans brings decades of experience across enterprise transformation, cloud architecture, and digital innovation.", "We partner with you every step of the way, ensuring seamless implementation and sustained success."
|
||||||
{ type: "text", content: "technology solutions" },
|
|
||||||
]}
|
]}
|
||||||
|
showBorder={true}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Explore Services", href: "#social-proof" },
|
{ text: "Learn More", href: "#social-proof" },
|
||||||
{ text: "Schedule Demo", href: "#contact" },
|
{ text: "Contact Us", href: "#footer" },
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Social Proof */}
|
{/* Social Proof - Social Proof One */}
|
||||||
<div id="social-proof" data-section="social-proof">
|
<div id="social-proof" data-section="social-proof">
|
||||||
<SocialProofOne
|
<SocialProofOne
|
||||||
title="Trusted by Industry Leaders"
|
title="Trusted by Industry Leaders"
|
||||||
description="Join hundreds of companies that rely on SAAR Technologies for their critical operations"
|
description="Join the ranks of Fortune 500 companies and innovative startups leveraging our technology solutions."
|
||||||
tag="Partners"
|
tag="Partners & Clients"
|
||||||
|
tagIcon={Award}
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"TechCorp", "DataFlow", "CloudSync", "InnovateLabs", "FutureScale", "VisionAI"
|
"TechCorp International", "Global Innovations Inc", "Digital Futures Ltd", "Enterprise Solutions Group", "Strategic Technologies", "Innovation Partners", "Next Gen Systems", "Advanced Ventures"
|
||||||
|
]}
|
||||||
|
logos={[
|
||||||
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=n74um1", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=qvy45h", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=xt7tmi", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=ukzhgj", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=hn1944", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=adrve1", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=fz24sz", "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=2oawpm"
|
||||||
]}
|
]}
|
||||||
speed={40}
|
speed={40}
|
||||||
showCard={true}
|
showCard={true}
|
||||||
|
buttons={[
|
||||||
|
{ text: "View Case Studies", href: "#" }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Contact */}
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<div className="flex flex-col items-center justify-center min-h-screen bg-background px-6 py-12 md:py-24">
|
|
||||||
<div className="max-w-2xl w-full text-center space-y-8">
|
|
||||||
<div className="space-y-4">
|
|
||||||
<h1 className="text-5xl md:text-7xl font-bold text-foreground">
|
|
||||||
Ready to Transform Your Business?
|
|
||||||
</h1>
|
|
||||||
<p className="text-xl text-foreground/75">
|
|
||||||
Get in touch with our team to discuss how SAAR Technologies can help you achieve your goals.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col md:flex-row gap-4 justify-center">
|
|
||||||
<a
|
|
||||||
href="mailto:hello@saartechnologies.com"
|
|
||||||
className="px-8 py-4 bg-primary-cta text-primary-cta-text rounded-lg font-semibold hover:opacity-90 transition-opacity"
|
|
||||||
>
|
|
||||||
Contact Us
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
href="#"
|
|
||||||
className="px-8 py-4 border border-foreground/20 text-foreground rounded-lg font-semibold hover:bg-foreground/5 transition-colors"
|
|
||||||
>
|
|
||||||
Schedule Call
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{/* Footer */}
|
{/* Footer */}
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBaseCard
|
<FooterBaseCard
|
||||||
logoText="SAAR TECHNOLOGIES"
|
logoText="SAAR TECHNOLOGIES"
|
||||||
copyrightText="© 2025 SAAR Technologies. All rights reserved."
|
copyrightText="© 2025 SAAR TECHNOLOGIES. All rights reserved."
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Product", items: [
|
title: "Solutions", items: [
|
||||||
{ label: "Features", href: "#hero" },
|
{ label: "Enterprise Solutions", href: "#hero" },
|
||||||
{ label: "Solutions", href: "#about" },
|
{ label: "Technology Stack", href: "#about" },
|
||||||
{ label: "Pricing", href: "#" },
|
{ label: "Integration Services", href: "#" },
|
||||||
{ label: "Documentation", href: "#" },
|
{ label: "Support", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company", items: [
|
title: "Company", items: [
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About Us", href: "#about" },
|
||||||
{ label: "Blog", href: "#" },
|
|
||||||
{ label: "Careers", href: "#" },
|
{ label: "Careers", href: "#" },
|
||||||
|
{ label: "News", href: "#" },
|
||||||
{ label: "Press", href: "#" },
|
{ label: "Press", href: "#" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Resources", items: [
|
title: "Resources", items: [
|
||||||
{ label: "Help Center", href: "#" },
|
{ label: "Documentation", href: "#" },
|
||||||
{ label: "Community", href: "#" },
|
{ label: "Case Studies", href: "#" },
|
||||||
{ label: "Status", href: "#" },
|
{ label: "Contact", href: "#footer" },
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Partners", href: "#social-proof" },
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Legal", items: [
|
|
||||||
{ label: "Privacy", href: "#" },
|
|
||||||
{ label: "Terms", href: "#" },
|
|
||||||
{ label: "Security", href: "#" },
|
|
||||||
{ label: "Compliance", href: "#" },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user