Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d71e93ac51 | |||
| fa8040c5e6 | |||
| 320314231f | |||
| 8552785aeb | |||
| 92486810ca | |||
| e13f64244c | |||
| 96b69de61e | |||
| 4a9862d3c6 | |||
| 585218c592 | |||
| 806c8d1f53 | |||
| 6684e1c390 | |||
| 543e1e0e2e | |||
| 8a21b016da | |||
| a6f0bea1d1 | |||
| 0041584808 |
48
src/app/contact/page.tsx
Normal file
48
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vantage Social"
|
||||
/>
|
||||
</div>
|
||||
<ContactCenter
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
tag="Inquiries"
|
||||
title="Let's work together"
|
||||
description="Reach out to discuss your project requirements."
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }] }]}
|
||||
logoText="Vantage Social"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
57
src/app/portfolio/page.tsx
Normal file
57
src/app/portfolio/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
|
||||
|
||||
export default function PortfolioPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/#about" },
|
||||
{ name: "Services", id: "/#services" },
|
||||
{ name: "Portfolio", id: "/portfolio" }
|
||||
]}
|
||||
brandName="Vantage Social"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="pt-32 pb-20">
|
||||
<FeatureCardMedia
|
||||
title="Case Studies"
|
||||
description="Deep dives into the transformative work we do for our partners."
|
||||
features={[
|
||||
{ id: "cs1", title: "Luxury Brand Launch", description: "Scale from zero to millions in reach for a new fashion house.", tag: "Fashion" },
|
||||
{ id: "cs2", title: "Tech Scaling", description: "High-performance growth strategy for SaaS startups.", tag: "Tech" }
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<FooterBase
|
||||
columns={[]}
|
||||
logoText="VANTAGE SOCIAL"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
52
src/app/pricing/page.tsx
Normal file
52
src/app/pricing/page.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function PricingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vantage Social"
|
||||
/>
|
||||
</div>
|
||||
<PricingCardNine
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Pricing Plans"
|
||||
description="Clear, transparent pricing for your brand's growth."
|
||||
plans={[
|
||||
{ id: "p1", title: "Starter", price: "$999", period: "/mo", features: ["Content Strategy", "Community Growth"], button: { text: "Choose Plan" } },
|
||||
{ id: "p2", title: "Pro", price: "$2999", period: "/mo", features: ["Everything in Starter", "Performance Ads", "Analytics"], button: { text: "Choose Plan" } }
|
||||
]}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }] }]}
|
||||
logoText="Vantage Social"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
57
src/app/team/page.tsx
Normal file
57
src/app/team/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
"use client";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function TeamPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Pricing", id: "/pricing" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Vantage Social"
|
||||
/>
|
||||
</div>
|
||||
<TeamCardEleven
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Meet Our Team"
|
||||
description="The creative experts behind your brand's success."
|
||||
groups={[
|
||||
{
|
||||
id: "g1",
|
||||
groupTitle: "Leadership",
|
||||
members: [
|
||||
{ id: "m1", title: "Alex Smith", subtitle: "Founder", detail: "10+ years experience in social marketing." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
<FooterBase
|
||||
columns={[{ title: "Company", items: [{ label: "Home", href: "/" }] }]}
|
||||
logoText="Vantage Social"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user