Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/(landing)/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import { Metadata } from 'next';
import { generatePageMetadata } from '@/lib/metadata';
import AboutUsDifferent from '@/components/landing-page/about/AboutUsDifferent';

import Timeline from '@/components/landing-page/about/timeline/Timeline';
import AboutLayout from './layout';
Expand All @@ -19,12 +20,13 @@ const AboutPage = () => {
{/* Boundless Difference */}
<Timeline />

<div className="relative z-10 space-y-[23px] md:space-y-[80px] max-w-[1300px] mx-auto">
<div className='relative z-10 space-y-[23px] md:space-y-[80px] max-w-[1300px] mx-auto'>
<OurTeam />
<Partners />
<div className="text-white text-4xl font-bold text-center mt-10">
<div className='text-white text-4xl font-bold text-center mt-10'>
<TestimonialsSection testimonials={testimonials} />
</div>
<AboutUsDifferent />
</div>
</AboutLayout>
);
Expand Down
114 changes: 114 additions & 0 deletions components/landing-page/about/AboutUsDifferent.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,114 @@
import Image from 'next/image';

function AboutUsDifferent() {
return (
<section className='flex flex-col items-center gap-10 md:py-[100px] py-8 relative overflow-hidden md:px-0 px-4'>
<Image
src='bg-header-about.svg'
alt='Header background'
width={1240}
height={1324}
className='absolute top-0'
/>
<div className='relative md:w-[1240px] w-full md:h-[200px] flex items-center justify-center pb-6'>
<h1 className='font-normal text--[32px] md:text-5xl text-white text-center'>
What Makes Boundless
<br className='md:hidden block' /> Different
</h1>
</div>
<main className='flex flex-col gap-6 md:w-[1240px] w-full md:h-[884px]'>
<div className='flex gap-6 justify-center md:flex-row flex-col items-center '>
<main className='md:w-[716px] w-[350px] h-[430px] rounded-[12px] p-[1px] bg-gradient-to-b from-white/48 to-white/8'>
<div className='w-full h-full rounded-[12px] bg-black/85 bg-[url("/card-bg.svg")] bg-no-repeat bg-center backdrop:blur-2xl p-6 flex flex-col items-center gap-6 text-left'>
<div className='md:w-[668px] w-[302px] md:h-[269px] h-[243px] flex justify-center items-center'>
<Image
src='card1.svg'
width='520'
height='241'
alt='Milestone Escrow'
/>
</div>
<div className='px-8 py-6 pb-1 flex flex-col gap-2.5'>
<h4 className='font-semibold text-base text-white'>
Validation First
</h4>
<p className='font-normal text-base text-stepper-text-inactive'>
Ideas are filtered through community-driven voting and
feedback before funds <br /> are raised.
</p>
</div>
</div>
</main>

<main className='md:w-[500px] w-[350px] h-[430px] rounded-[12px] p-[1px] bg-gradient-to-b from-white/48 to-white/8'>
<div className='w-full h-full rounded-[12px] bg-black/85 bg-[url("/card-bg.svg")] bg-no-repeat bg-center backdrop:blur-2xl p-6 flex flex-col items-center gap-6 text-left'>
<div className='md:w-[452px] w-[302px] md:h-[269px] h-[243px] flex justify-center items-center'>
<Image
src='card2.svg'
width={452}
height={205}
alt='Milestone Escrow'
/>
</div>
<div className='px-8 py-6 pb-1 flex flex-col gap-2.5'>
<h4 className='font-semibold text-base text-white'>
Milestone Escrow
</h4>
<p className='font-normal text-base text-stepper-text-inactive'>
Backers are protected. Funds are only released <br /> when
project milestones are achieved and verified.
</p>
</div>
</div>
</main>
</div>
<div className='flex gap-6 justify-center md:flex-row flex-col items-center'>
<main className='md:w-[500px] w-[350px] h-[430px] rounded-[12px] p-[1px] bg-gradient-to-b from-white/48 to-white/8'>
<div className='w-full h-full rounded-[12px] bg-black/85 bg-[url("/card-bg.svg")] bg-no-repeat bg-center backdrop:blur-2xl p-6 flex flex-col items-center gap-6 text-left'>
<div className='md:w-[452px] w-[302px] md:h-[269px] h-[243px] flex justify-center items-center'>
<Image
src='card3.svg'
width={452}
height={205}
alt='Milestone Escrow'
/>
</div>
<div className='px-8 py-6 pb-1 flex flex-col gap-2.5'>
<h4 className='font-semibold text-base text-white'>
Inclusive Growth
</h4>
<p className='font-normal text-base text-stepper-text-inactive'>
Crowdfunding, grants, and hackathons all opportunities in one
ecosystem.
</p>
</div>
</div>
</main>
<main className='md:w-[716px] w-[350px] h-[430px] rounded-[12px] p-[1px] bg-gradient-to-b from-white/48 to-white/8'>
<div className='w-full h-full rounded-[12px] bg-black/85 bg-[url("/card-bg.svg")] bg-no-repeat bg-center backdrop:blur-2xl p-6 flex flex-col items-center gap-6 text-left'>
<div className='md:w-[668px] w-[302px] md:h-[269px] h-[243px] flex justify-center items-center'>
<Image
src='card4.svg'
width='620'
height='258'
alt='Milestone Escrow'
/>
</div>
<div className='px-8 py-6 pb-1 flex flex-col gap-2.5'>
<h4 className='font-semibold text-base text-white'>
Blockchain-Powered
</h4>
<p className='font-normal text-base text-stepper-text-inactive'>
Built on Stellar and integrated with Trustless Work for
secure, transparent funding.
</p>
</div>
</div>
</main>
</div>
</main>
</section>
);
}

export default AboutUsDifferent;
102 changes: 102 additions & 0 deletions public/bg-header-about.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading