Skip to content

Commit 0ada525

Browse files
committed
Update Ouranos screenshots, remove early access messages
1 parent 01ddc85 commit 0ada525

File tree

7 files changed

+5
-18
lines changed

7 files changed

+5
-18
lines changed

public/images/confetti.png

-3.67 KB
Binary file not shown.

public/images/screenshot.png

-69.2 KB
Loading

src/app/(site)/about/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export default function Page() {
169169
</p>
170170
</section>
171171
<footer className="text-skin-tertiary mt-16 text-center text-sm font-medium">
172-
OURANOS · EARLY ACCESS · {new Date().getFullYear()}
172+
OURANOS · {new Date().getFullYear()}
173173
</footer>
174174
</main>
175175
);

src/app/opengraph-image.png

-59.5 KB
Loading

src/app/page.tsx

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,10 @@ export default function Home() {
2828
</Link>
2929
</header>
3030
<section className="animate-fade-up animate-delay-150 mx-auto mt-16 max-w-xl">
31-
<small className="bg-primary/20 text-primary animate-fade-up animate-delay-[1000ms] mb-1 inline-flex items-center gap-1 rounded-full px-3 py-2 text-[0.6rem] font-bold">
32-
In Early Access
33-
<Image
34-
src="/images/confetti.png"
35-
alt="Confetti emoji"
36-
width={14}
37-
height={14}
38-
/>
39-
</small>
40-
4131
<h1 className="text-skin-base max-w-lg text-4xl font-medium">
4232
Your friendly Bluesky client for the web
4333
</h1>
44-
34+
4535
<ul className="text-skin-secondary mt-5 text-lg font-medium">
4636
<li>Designed for simplicity</li>
4737
<li>Enhanced features</li>
@@ -74,7 +64,7 @@ export default function Home() {
7464
/>
7565
</div>
7666
<footer className="animate-fade-up animate-delay-500 text-skin-tertiary mt-16 text-center text-sm font-medium">
77-
OURANOS · EARLY ACCESS · {new Date().getFullYear()}
67+
OURANOS · {new Date().getFullYear()}
7868
</footer>
7969
</main>
8070
);

src/components/forms/loginForm/LoginForm.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,6 @@ export default function LoginForm() {
101101
</Link>{" "}
102102
to log in.
103103
</p>
104-
<p className="text-skin-secondary text-sm font-medium">
105-
Ouranos is in early access, some features may not be available yet.
106-
</p>
107104
<form
108105
className="mt-5 text-sm font-medium"
109106
onSubmit={(e) => {

src/components/inputs/editor/BottomEditorBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function BottomEditorBar(props: Props) {
5959
...files.slice(0, 4).map((file) =>
6060
Object.assign(file, {
6161
url: URL.createObjectURL(file),
62-
}),
62+
})
6363
),
6464
];
6565
onUpdateImages(updatedImages);
@@ -81,7 +81,7 @@ export default function BottomEditorBar(props: Props) {
8181
onSelectLabel={onSelectLabel}
8282
selectedLabel={label}
8383
disabled={!images || images.length === 0}
84-
/>
84+
/>
8585
<LinkPicker editor={editor} />
8686
</div>
8787
<div className="just flex flex-wrap gap-x-5 gap-y-2">

0 commit comments

Comments
 (0)