principles

This commit is contained in:
sasha-astiadi 2025-07-09 17:36:10 +02:00
parent e9790da9c8
commit 359791ec86
7 changed files with 34 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

BIN
public/images/home/open.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 KiB

View File

@ -8,6 +8,7 @@ import { Pricing } from '@/components/Pricing'
import { PrimaryFeatures } from '@/components/PrimaryFeatures' import { PrimaryFeatures } from '@/components/PrimaryFeatures'
import { SecondaryFeatures } from '@/components/SecondaryFeatures' import { SecondaryFeatures } from '@/components/SecondaryFeatures'
import { Testimonials } from '@/components/Testimonials' import { Testimonials } from '@/components/Testimonials'
import { HomePrinciples } from '@/components/HomePrinciples'
export default function Home() { export default function Home() {
return ( return (
@ -16,6 +17,7 @@ export default function Home() {
<main> <main>
<Hero /> <Hero />
<HomeAbout /> <HomeAbout />
<HomePrinciples />
<SecondaryFeatures /> <SecondaryFeatures />
<CallToAction /> <CallToAction />
<Testimonials /> <Testimonials />

View File

@ -0,0 +1,32 @@
const stats = [
{ id: 1, name: 'Build in ways that respect and protect natural resources.', value: 'Planet First' },
{ id: 2, name: 'Ensure equality and equity in our ecosystem.', value: 'People First' },
{ id: 3, name: 'Promote collaborative development across all our projects.', value: 'Open Source' },
{ id: 4, name: 'Uphold an ethos of transparency and trust.', value: 'Authenticity' },
{ id: 5, name: 'Eliminate design complexities to foster rapid progress.', value: 'Simplicity' },
]
export function HomePrinciples() {
return (
<div className="bg-white py-24 sm:py-32">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto max-w-2xl lg:max-w-none">
<div className="text-center">
<h2 className="h2-default text-gray-900 ">
Trusted by creators worldwide
</h2>
<p className="mt-4 p-default text-gray-600">Lorem ipsum dolor sit amet consect adipisicing possimus.</p>
</div>
<dl className="mt-16 grid grid-cols-1 gap-0.5 overflow-hidden rounded-2xl text-center sm:grid-cols-2 lg:grid-cols-5">
{stats.map((stat) => (
<div key={stat.id} className="flex flex-col bg-gray-400/5 p-8">
<dt className="mt-2 text-sm/6 font-medium leading-tight text-gray-600">{stat.name}</dt>
<dd className="order-first text-xl font-semibold tracking-tight text-gray-900">{stat.value}</dd>
</div>
))}
</dl>
</div>
</div>
</div>
)
}