diff --git a/src/components/UseCases.astro b/src/components/UseCases.astro new file mode 100644 index 0000000..3fa389b --- /dev/null +++ b/src/components/UseCases.astro @@ -0,0 +1,31 @@ +--- +const cases = [ + { title: 'Work Identity', desc: 'Keep work communication clear, organized, and easier to review.' }, + { title: 'Private Identity', desc: 'Keep personal conversations natural, focused, and separate from work noise.' }, + { title: 'Protected Space', desc: 'Some conversations are not only private. They require stronger boundaries and another layer of protection.' }, +] +--- + +
+
+

USE CASES

+
+

+ Designed for the worlds you already live in. +

+
+

+ Work, private life, and protected conversations should not interfere with each other inside one identity. +

+
+ +
+ {cases.map((c) => ( +
+

{c.title}

+
+

{c.desc}

+
+ ))} +
+
diff --git a/src/pages/index.astro b/src/pages/index.astro index 0871c23..fd5e192 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,10 +3,12 @@ import Base from '../layouts/Base.astro' import Header from '../components/Header.astro' import Hero from '../components/Hero.astro' import CoreSystem from '../components/CoreSystem.astro' +import UseCases from '../components/UseCases.astro' ---
+