12 Commits

Author SHA1 Message Date
10f54a2d54 Merge version_3 into main
Merge version_3 into main
2026-01-22 22:40:34 +00:00
2167ba39ca Update src/app/portfolio/page.tsx 2026-01-22 22:40:29 +00:00
b284f8b3bb Update src/app/contact/page.tsx 2026-01-22 22:40:28 +00:00
6b9d905f6b Update src/app/about/page.tsx 2026-01-22 22:40:27 +00:00
124f13450e Merge version_2 into main
Merge version_2 into main
2026-01-22 22:38:01 +00:00
75e3f4ce8d Update src/app/portfolio/page.tsx 2026-01-22 22:37:56 +00:00
776e278cdf Update src/app/page.tsx 2026-01-22 22:37:55 +00:00
c1e1ca4f01 Update src/app/layout.tsx 2026-01-22 22:37:55 +00:00
d56a7c19f3 Update src/app/globals.css 2026-01-22 22:37:54 +00:00
5d2c7ebacb Update src/app/contact/page.tsx 2026-01-22 22:37:53 +00:00
a960cc8bec Update src/app/about/page.tsx 2026-01-22 22:37:52 +00:00
59da6789bd Merge version_1 into main
Merge version_1 into main
2026-01-22 18:56:23 +00:00
6 changed files with 56 additions and 17 deletions

View File

@@ -1,6 +1,7 @@
"use client"; "use client";
import Link from "next/link"; import Link from "next/link";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine'; import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
@@ -36,6 +37,18 @@ export default function AboutPage() {
/> />
</div> </div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="PitchDrive"
description="Founded by experienced operators who understand the challenges of building transformative companies from the ground up."
background={{ variant: "sparkles-gradient" }}
imageSrc="https://img.b2bpic.net/free-photo/authentic-small-youthful-marketing-agency_23-2150167443.jpg"
imageAlt="PitchDrive founding team"
frameStyle="card"
logoLineHeight={1.1}
/>
</div>
<div id="about-story" data-section="about-story"> <div id="about-story" data-section="about-story">
<TestimonialAboutCard <TestimonialAboutCard
tag="Our Story" tag="Our Story"
@@ -103,4 +116,4 @@ export default function AboutPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -1,6 +1,7 @@
"use client"; "use client";
import Link from "next/link"; import Link from "next/link";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
@@ -36,6 +37,18 @@ export default function ContactPage() {
/> />
</div> </div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Contact"
description="Let's build something exceptional together. If you're a founder with a vision, we want to hear from you."
background={{ variant: "sparkles-gradient" }}
imageSrc="https://img.b2bpic.net/free-photo/team-diverse-coworkers-modern-office-discuss-their-project-together_93675-133516.jpg"
imageAlt="PitchDrive team at work"
frameStyle="card"
logoLineHeight={1.1}
/>
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
title="Let's Build Something Exceptional" title="Let's Build Something Exceptional"
@@ -105,4 +118,4 @@ export default function ContactPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #f5f5f5;; /* --background: #fafffb;;
--card: #ffffff;; --card: #f7fffa;;
--foreground: #1c1c1c;; --foreground: #001a0a;;
--primary-cta: #b82b40;; --primary-cta: #0a7039;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #b90941;; --accent: #a8d9be;;
--background-accent: #e8a8b6;; */ --background-accent: #6bbf8e;; */
--background: #f5f5f5;; --background: #fafffb;;
--card: #ffffff;; --card: #f7fffa;;
--foreground: #1c1c1c;; --foreground: #001a0a;;
--primary-cta: #b82b40;; --primary-cta: #0a7039;;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;;
--accent: #b90941;; --accent: #a8d9be;;
--background-accent: #e8a8b6;; --background-accent: #6bbf8e;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1258,4 +1258,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -153,4 +153,4 @@ export default function HomePage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -1,6 +1,7 @@
"use client"; "use client";
import Link from "next/link"; import Link from "next/link";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
@@ -36,6 +37,18 @@ export default function PortfolioPage() {
/> />
</div> </div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
logoText="Portfolio"
description="A comprehensive view of the exceptional companies we've partnered with across various industries and stages"
background={{ variant: "sparkles-gradient" }}
imageSrc="https://img.b2bpic.net/free-photo/business-meeting-office_1268-21517.jpg"
imageAlt="PitchDrive portfolio companies"
frameStyle="card"
logoLineHeight={1.1}
/>
</div>
<div id="portfolio-showcase" data-section="portfolio-showcase"> <div id="portfolio-showcase" data-section="portfolio-showcase">
<ProductCardThree <ProductCardThree
products={[ products={[
@@ -103,4 +116,4 @@ export default function PortfolioPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }