Skip to content

Commit bb1feb7

Browse files
committed
start of site
1 parent 7c68c4c commit bb1feb7

34 files changed

+2469
-0
lines changed

web/.prettierrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"tabWidth": 4
3+
}

web/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Theme taken from https://github.com/matt765/Tailcast

web/astro.config.mjs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import { defineConfig } from "astro/config";
2+
import react from "@astrojs/react";
3+
import tailwind from "@astrojs/tailwind";
4+
5+
export default defineConfig({
6+
integrations: [react(), tailwind()],
7+
output: "static",
8+
});

web/bun.lock

Lines changed: 1168 additions & 0 deletions
Large diffs are not rendered by default.

web/package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "feedr-web",
3+
"type": "module",
4+
"scripts": {
5+
"dev": "astro dev",
6+
"start": "astro dev",
7+
"build": "astro build",
8+
"preview": "astro preview",
9+
"astro": "astro"
10+
},
11+
"dependencies": {
12+
"@astrojs/tailwind": "^5.1.0",
13+
"@fontsource/inter": "^5.0.18",
14+
"@number-flow/react": "^0.5.9",
15+
"@skyra/discord-components-react": "^3.6.1",
16+
"astro": "^4.9.2",
17+
"framer-motion": "^11.2.10",
18+
"react-icons": "^5.5.0",
19+
"tailwindcss": "^3.4.3"
20+
},
21+
"devDependencies": {
22+
"@astrojs/react": "^3.4.0",
23+
"react": "^18.3.1",
24+
"react-dom": "^18.3.1"
25+
}
26+
}

web/public/favicon.svg

Lines changed: 10 additions & 0 deletions
Loading

web/public/robots.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
User-agent: *
2+
Allow: /
3+
Disallow: /api
4+
Disallow: /invite
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export const CheckArrowIcon = () => (
2+
<div className="rounded-full bg-transparent w-5 h-5 flex justify-center items-center mr-4">
3+
<svg
4+
xmlns="http://www.w3.org/2000/svg"
5+
viewBox="0 0 512 512"
6+
width="20px"
7+
height="20px"
8+
className="fill-secondaryColor"
9+
>
10+
<path d="M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z" />
11+
</svg>
12+
</div>
13+
);

web/src/assets/icons/CloseIcon.jsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export const CloseIcon = () => (
2+
<svg
3+
xmlns="http://www.w3.org/2000/svg"
4+
viewBox="0 0 320 512"
5+
fill="currentColor"
6+
>
7+
<path d="M310.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 210.7 54.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L114.7 256 9.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 301.3 265.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L205.3 256 310.6 150.6z" />
8+
</svg>
9+
);

web/src/assets/icons/QuoteIcon.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
export const QuoteIcon = () => (
2+
<svg
3+
xmlns="http://www.w3.org/2000/svg"
4+
viewBox="0 0 448 512"
5+
className="fill-quoteIconColor"
6+
width="35px"
7+
>
8+
<path d="M0 216C0 149.7 53.7 96 120 96h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V320 288 216zm256 0c0-66.3 53.7-120 120-120h8c17.7 0 32 14.3 32 32s-14.3 32-32 32h-8c-30.9 0-56 25.1-56 56v8h64c35.3 0 64 28.7 64 64v64c0 35.3-28.7 64-64 64H320c-35.3 0-64-28.7-64-64V320 288 216z" />
9+
</svg>
10+
);

0 commit comments

Comments
 (0)