Skip to content

Commit 666f014

Browse files
fmt
1 parent 75b9999 commit 666f014

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

apps/web/src/routes/_view/index.tsx

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -470,14 +470,28 @@ Mad respect to the team. This is how you build in 2025. 🚀"
470470
{/* Manifesto Section */}
471471
<section className="py-16 border-t border-neutral-100 px-4">
472472
<div className="max-w-4xl mx-auto">
473-
<div className="border border-neutral-200 p-4" style={{ backgroundImage: 'url(/patterns/white_leather.png)' }}>
473+
<div
474+
className="border border-neutral-200 p-4"
475+
style={{ backgroundImage: "url(/patterns/white_leather.png)" }}
476+
>
474477
{/* Postcard */}
475-
<div className="bg-stone-50 border border-neutral-200 rounded-sm p-8 sm:p-12" style={{ backgroundImage: 'url(/patterns/paper.png)' }}>
478+
<div
479+
className="bg-stone-50 border border-neutral-200 rounded-sm p-8 sm:p-12"
480+
style={{ backgroundImage: "url(/patterns/paper.png)" }}
481+
>
476482
<h2 className="text-2xl sm:text-3xl font-serif text-stone-600 mb-4">Our manifesto</h2>
477483

478484
<div className="space-y-4 text-neutral-700 leading-relaxed">
479-
<p>We believe in the power of notetaking, not notetakers. Meetings should be moments of presence, not passive attendance. If you are not adding value, your time is better spent elsewhere for you and your team.</p>
480-
<p>Hyprnote exists to preserve what makes us human: conversations that spark ideas, collaborations that move work forward. We build tools that amplify human agency, not replace it. No ghost bots. No silent note lurkers. Just people, thinking together.</p>
485+
<p>
486+
We believe in the power of notetaking, not notetakers. Meetings should be moments of presence, not
487+
passive attendance. If you are not adding value, your time is better spent elsewhere for you and
488+
your team.
489+
</p>
490+
<p>
491+
Hyprnote exists to preserve what makes us human: conversations that spark ideas, collaborations that
492+
move work forward. We build tools that amplify human agency, not replace it. No ghost bots. No
493+
silent note lurkers. Just people, thinking together.
494+
</p>
481495
<p>We stand with those who value real connection and purposeful collaboration.</p>
482496
</div>
483497

apps/web/src/routes/auth.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,6 @@ function EmailAuthForm({ flow }: { flow: "desktop" | "web" }) {
136136
});
137137

138138
return (
139-
140139
<>
141140
<form
142141
onSubmit={(e) => {
@@ -193,7 +192,6 @@ function EmailAuthForm({ flow }: { flow: "desktop" | "web" }) {
193192
);
194193
}
195194

196-
197195
function OAuthButton({ flow, provider }: { flow: "desktop" | "web"; provider: "google" | "github" }) {
198196
const oauthMutation = useMutation({
199197
mutationFn: (provider: "google" | "github") =>

0 commit comments

Comments
 (0)