diff --git a/public/images/home/authentic.png b/public/images/home/authentic.png new file mode 100644 index 0000000..83aa25b Binary files /dev/null and b/public/images/home/authentic.png differ diff --git a/public/images/home/open.png b/public/images/home/open.png new file mode 100644 index 0000000..2613a99 Binary files /dev/null and b/public/images/home/open.png differ diff --git a/public/images/home/people.png b/public/images/home/people.png new file mode 100644 index 0000000..586ada4 Binary files /dev/null and b/public/images/home/people.png differ diff --git a/public/images/home/planet.png b/public/images/home/planet.png new file mode 100644 index 0000000..997eded Binary files /dev/null and b/public/images/home/planet.png differ diff --git a/public/images/home/simple.png b/public/images/home/simple.png new file mode 100644 index 0000000..cb14bae Binary files /dev/null and b/public/images/home/simple.png differ diff --git a/src/app/page.tsx b/src/app/page.tsx index 97b290f..a4f07e2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,6 +8,7 @@ import { Pricing } from '@/components/Pricing' import { PrimaryFeatures } from '@/components/PrimaryFeatures' import { SecondaryFeatures } from '@/components/SecondaryFeatures' import { Testimonials } from '@/components/Testimonials' +import { HomePrinciples } from '@/components/HomePrinciples' export default function Home() { return ( @@ -16,6 +17,7 @@ export default function Home() {
+ diff --git a/src/components/HomePrinciples.tsx b/src/components/HomePrinciples.tsx new file mode 100644 index 0000000..260b5e8 --- /dev/null +++ b/src/components/HomePrinciples.tsx @@ -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 ( +
+
+
+
+

+ Trusted by creators worldwide +

+

Lorem ipsum dolor sit amet consect adipisicing possimus.

+
+
+ {stats.map((stat) => ( +
+
{stat.name}
+
{stat.value}
+
+ ))} +
+
+
+
+ ) +}