9 Commits

Author SHA1 Message Date
6eb3a434ff Merge version_2 into main
Merge version_2 into main
2026-04-03 20:03:58 +00:00
24b5603b3b Update src/app/page.tsx 2026-04-03 20:03:55 +00:00
f0c2753425 Update src/app/about/page.tsx 2026-04-03 20:03:55 +00:00
046e0ed894 Merge version_2 into main
Merge version_2 into main
2026-04-03 20:03:34 +00:00
3db00a99fe Update src/app/page.tsx 2026-04-03 20:03:31 +00:00
610819fd42 Add src/app/about/page.tsx 2026-04-03 20:03:30 +00:00
c40883fb73 Merge version_1 into main
Merge version_1 into main
2026-04-03 19:57:11 +00:00
1a75cb87f1 Merge version_1 into main
Merge version_1 into main
2026-04-03 19:56:44 +00:00
3b05b29896 Merge version_1 into main
Merge version_1 into main
2026-04-03 19:56:14 +00:00
2 changed files with 65 additions and 2 deletions

62
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,62 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Play } from "lucide-react";
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="compact"
sizing="largeSmall"
background="noise"
cardStyle="inset"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="extrabold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Pricing", id: "#pricing" },
{ name: "API", id: "#api" },
{ name: "Features", id: "#features" },
{ name: "Blog", id: "#blog" },
{ name: "About", id: "/about" },
]}
brandName="Ssemble"
button={{ text: "Sign In", href: "#" }}
/>
</div>
<div id="about" data-section="about" className="py-24">
<TestimonialAboutCard
useInvertedBackground={true}
tag="About Us"
title="Revolutionizing Video Content with AI"
description="Ssemble was founded on the belief that creating professional-grade content should be accessible to everyone. Our platform leverages cutting-edge AI to automate the tedious parts of video editing, allowing creators to focus on what matters: their story."
subdescription="From viral shorts to long-form narratives, we provide the tools to make your content shine."
icon={Play}
imageSrc="http://img.b2bpic.net/free-photo/close-up-neon-pen_23-2150835492.jpg?_wi=2"
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Ssemble © 2024"
leftLink={{ text: "Clipping Service", href: "#" }}
rightLink={{ text: "Terms & Privacy", href: "#" }}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "API", id: "#api" },
{ name: "Features", id: "#features" },
{ name: "Blog", id: "#blog" },
{ name: "About", id: "/about" },
]}
brandName="Ssemble"
button={{
@@ -49,7 +50,7 @@ export default function LandingPage() {
{
text: "Get Clips", href: "#"},
{
text: "See How It Works", href: "#about"},
text: "See How It Works", href: "/about"},
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-accounting-sales-statistics-computer-display_482257-122982.jpg?_wi=1"
@@ -114,7 +115,7 @@ export default function LandingPage() {
description="Experience a seamless, AI-powered workflow designed to maximize your content potential in minutes, not hours."
subdescription="Whether you're a professional creator or just starting out, Ssemble handles the heavy lifting of editing and curation."
icon={Play}
imageSrc="http://img.b2bpic.net/free-photo/close-up-neon-pen_23-2150835492.jpg"
imageSrc="http://img.b2bpic.net/free-photo/close-up-neon-pen_23-2150835492.jpg?_wi=1"
mediaAnimation="slide-up"
/>
</div>