diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..a89aa85 --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,392 @@ +'use client' + +import { + AcademicCapIcon, + CheckCircleIcon, + HandRaisedIcon, + RocketLaunchIcon, + SparklesIcon, + SunIcon, + UserGroupIcon, +} from '@heroicons/react/20/solid' +import PageLayout from '../components/PageLayout' + + +const stats = [ + { label: 'Business was founded', value: '2024' }, + { label: 'People on the team', value: '10+' }, + { label: 'Users on the platform', value: '250k' }, + { label: 'Paid out gold members', value: '$70M' }, +] +const values = [ + { + name: 'Be world-class.', + description: 'Lorem ipsum, dolor sit amet consectetur adipisicing elit aute id magna.', + icon: RocketLaunchIcon, + }, + { + name: 'Take responsibility.', + description: 'Anim aute id magna aliqua ad ad non deserunt sunt. Qui irure qui lorem cupidatat commodo.', + icon: HandRaisedIcon, + }, + { + name: 'Be supportive.', + description: 'Ac tincidunt sapien vehicula erat auctor pellentesque rhoncus voluptas blanditiis et.', + icon: UserGroupIcon, + }, + { + name: 'Always learning.', + description: 'Iure sed ab. Aperiam optio placeat dolor facere. Officiis pariatur eveniet atque et dolor.', + icon: AcademicCapIcon, + }, + { + name: 'Share everything you know.', + description: 'Laudantium tempora sint ut consectetur ratione. Ut illum ut rem numquam fuga delectus.', + icon: SparklesIcon, + }, + { + name: 'Enjoy downtime.', + description: 'Culpa dolorem voluptatem velit autem rerum qui et corrupti. Quibusdam quo placeat.', + icon: SunIcon, + }, +] +const team = [ + { + name: 'Leslie Alexander', + role: 'Co-Founder / CEO', + imageUrl: + 'https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Toronto, Canada', + }, + { + name: 'Michael Foster', + role: 'Co-Founder / CTO', + imageUrl: + 'https://images.unsplash.com/photo-1519244703995-f4e0f30006d5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Glasgow, Scotland', + }, + { + name: 'Dries Vincent', + role: 'Business Relations', + imageUrl: + 'https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Niagara Falls, Canada', + }, + { + name: 'Lindsay Walton', + role: 'Front-end Developer', + imageUrl: + 'https://images.unsplash.com/photo-1517841905240-472988babdf9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'London, England', + }, + { + name: 'Courtney Henry', + role: 'Designer', + imageUrl: + 'https://images.unsplash.com/photo-1438761681033-6461ffad8d80?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Toronto, Canada', + }, + { + name: 'Tom Cook', + role: 'Director of Product', + imageUrl: + 'https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Toronto, Canada', + }, + { + name: 'Whitney Francis', + role: 'Copywriter', + imageUrl: + 'https://images.unsplash.com/photo-1517365830460-955ce3ccd263?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Toronto, Canada', + }, + { + name: 'Leonard Krasner', + role: 'Senior Designer', + imageUrl: + 'https://images.unsplash.com/photo-1519345182560-3f2917c472ef?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=8&w=1024&h=1024&q=80', + location: 'Toronto, Canada', + }, +] +const benefits = [ + 'Competitive salaries', + 'Flexible work hours', + '0 days of paid vacation', + 'Annual team retreats', + 'Benefits for you and your family', + 'A great work environment', +] +const footerNavigation = { + solutions: [ + { name: 'Marketing', href: '#' }, + { name: 'Analytics', href: '#' }, + { name: 'Automation', href: '#' }, + { name: 'Commerce', href: '#' }, + { name: 'Insights', href: '#' }, + ], + support: [ + { name: 'Submit ticket', href: '#' }, + { name: 'Documentation', href: '#' }, + { name: 'Guides', href: '#' }, + ], + company: [ + { name: 'About', href: '#' }, + { name: 'Blog', href: '#' }, + { name: 'Jobs', href: '#' }, + { name: 'Press', href: '#' }, + ], + legal: [ + { name: 'Terms of service', href: '#' }, + { name: 'Privacy policy', href: '#' }, + { name: 'License', href: '#' }, + ], + social: [ + { + name: 'Facebook', + href: '#', + icon: (props: any) => ( + + + + ), + }, + { + name: 'Instagram', + href: '#', + icon: (props: any) => ( + + + + ), + }, + { + name: 'X', + href: '#', + icon: (props: any) => ( + + + + ), + }, + { + name: 'GitHub', + href: '#', + icon: (props: any) => ( + + + + ), + }, + { + name: 'YouTube', + href: '#', + icon: (props: any) => ( + + + + ), + }, + ], +} + +export default function AboutUsPage() { + return ( + +
+
+ {/* Background */} +
+
+
+ ) +}