Skip to content

Commit

Permalink
landing page: add foreword section
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanThatOneKid committed Oct 29, 2024
1 parent 4c18b60 commit ac6181b
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 1 deletion.
90 changes: 90 additions & 0 deletions components/landing_page/foreword_section.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
import { A, BLOCKQUOTE, H2, P } from "@fartlabs/htx";
import { PageSection } from "#/components/page_section.tsx";
import { ChatButton } from "#/components/page_button/buttons/chat_button.tsx";

export function ForewordSection() {
return (
<PageSection>
<H2 id="foreword" class="page-heading">
Modern software solutions in a snap
</H2>

<P>
Personal computing has the potential to be a deeply personalized
experience, a digital extension of ourselves. Yet, the software we rely
on often falls short of this ideal. While we have the tools to connect
with others, capture moments, and explore the world, the underlying
software is designed for a generic "average user." This
one-size-fits-all approach stifles individuality and limits the
potential of our devices. Much like passing gas in a quiet room, we're
forced to adapt to the software, rather than the software adapting to
us.
</P>

<P>
Individuals from around the world have joined the movement to reclaim
personal computing.
</P>

<BLOCKQUOTE>
<P>
Want a new feature? Wait for an update. Want an old feature back?
Tough luck, it didn't increase engagement. Maybe you have some great
ideas — like a simpler messaging app for your grandma, permanently
disabling auto-flash on your camera, or a map that can compare
multiple routes. Unless you're a developer with a lot of patience, the
power to reshape software is out of your hands.
</P>

<P>
-{" "}
<A href="https://tyler.cafe/" class="fart-link">
Tyler Angert
</A>
</P>
</BLOCKQUOTE>

<BLOCKQUOTE>
<P>
In sum, I believe that there exists a better way forward for personal
computing. I do not purport to have all the answers, but I am coming
at this equipped with some intriguing starting points, and motivated
by a lifelong obsession with what potential personal computing
presents to the future of our society.
</P>

<P>
-{" "}
<A href="https://alexobenauer.com/" class="fart-link">
Alexander Obenauer
</A>
</P>
</BLOCKQUOTE>

<P>
Inspired by decades of science fiction and technological advancements,
we gained the opportunity to shape a future where technology truly
serves our needs. By challenging the biased, self-serving agendas and
walled gardens that dominate the tech industry, we can take control of
our digital experiences.
</P>

<P>
Let's disengage the airlock on this{" "}
<A
href="https://urbandictionary.com/define.php?term=Dutch+oven"
class="fart-link"
>
Dutch oven
</A>. Join us! <ChatButton />
</P>

<P>
-{" "}
<A href="https://etok.me/" class="fart-link">
Ethan Davidson, Chief Scientist & Founder at FartLabs
</A>
</P>
</PageSection>
);
}
2 changes: 2 additions & 0 deletions components/landing_page/landing_page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { PageLayout } from "#/components/page_layout.tsx";
import { HeroSection } from "./hero_section.tsx";
import { ForewordSection } from "./foreword_section.tsx";
import { ProjectsSection } from "./projects_section.tsx";
import { RiseSection } from "./rise_section.tsx";
import { FAQsSection } from "./faqs_section.tsx";
Expand All @@ -8,6 +9,7 @@ export function LandingPage() {
return (
<PageLayout>
<HeroSection />
<ForewordSection />
<ProjectsSection />
<RiseSection />
<FAQsSection />
Expand Down
2 changes: 1 addition & 1 deletion components/landing_page/projects_section.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { A, CODE, DIV, EM, H2, H3, P, SPAN } from "@fartlabs/htx";
import { A, CODE, DIV, H2, H3, P, SPAN } from "@fartlabs/htx";
import { PageSection } from "#/components/page_section.tsx";

export function ProjectsSection() {
Expand Down

0 comments on commit ac6181b

Please sign in to comment.