Skip to content

Commit

Permalink
Merge branch 'preview'
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelfan committed Dec 16, 2023
2 parents ae49714 + 0ed628b commit e11bc03
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Run `npm run dev` and open [http://localhost:3000](http://localhost:3000) with y

The following environment variables are required:

- NEXTAUTH_SECRET (generate one using `openssl rand -base64 32` or visit [https://generate-secret.vercel.app/32](https://generate-secret.vercel.app/32)). You won't need to prefix it with `NEXT_PUBLIC` if you are deploying to Vercel.
- NEXTAUTH_URL (`http://localhost:3000` while running locally. You won't need this variable in production if you're deploying to Vercel.)
- `NEXTAUTH_SECRET` (generate one using `openssl rand -base64 32` or visit [https://generate-secret.vercel.app/32](https://generate-secret.vercel.app/32)). You won't need to prefix it with `NEXT_PUBLIC` if you are deploying to Vercel.
- `NEXTAUTH_URL` (`http://localhost:3000` while running locally. You won't need this variable in production if you're deploying to Vercel.)

## Project Roadmap

Expand Down
Binary file added public/images/confetti.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/images/screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/app/apple-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ const inter = Inter({ subsets: ["latin"], variable: "--font-inter" });

export const metadata: Metadata = {
title: "Ouranos",
description: "Your Bluesky web client",
description: "Your friendly Bluesky client for the web",
metadataBase: new URL("https://useouranos.app"),
};

export default async function RootLayout({
Expand Down
20 changes: 20 additions & 0 deletions src/app/manifest.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { MetadataRoute } from "next";

export default function manifest(): MetadataRoute.Manifest {
return {
name: "Ouranos",
short_name: "Ouranos",
description: "Your friendly Bluesky client for the web",
start_url: "/",
display: "standalone",
background_color: "#fff",
theme_color: "#fff",
icons: [
{
src: "/favicon.ico",
sizes: "any",
type: "image/x-icon",
},
],
};
}
1 change: 1 addition & 0 deletions src/app/opengraph-image.alt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
About Ouranos
Binary file added src/app/opengraph-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,16 @@ export default function Home() {
</Link>
</header>
<section className="mt-16 max-w-xl mx-auto animate-fade-up animate-delay-150">
<small className="inline-block px-3 py-2 mb-1 rounded-full bg-primary/10 font-semibold text-[0.6rem] text-primary animate-fade-up animate-delay-[1000ms]">
In Early Access 🎉
<small className="inline-flex gap-1 items-center px-3 py-2 mb-1 rounded-full bg-primary/10 font-bold text-[0.6rem] text-primary animate-fade-up animate-delay-[1000ms]">
In Early Access
<Image
src="/images/confetti.png"
alt="Confetti emoji"
width={14}
height={14}
/>
</small>

<h1 className="text-4xl font-medium text-neutral-600 max-w-lg">
Your friendly Bluesky client for the web
</h1>
Expand Down
1 change: 1 addition & 0 deletions src/app/twitter-image.alt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
About Ouranos
Binary file added src/app/twitter-image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit e11bc03

Please sign in to comment.