Skip to content

Commit

Permalink
Merge pull request #7 from dpaulos6/main
Browse files Browse the repository at this point in the history
feat: main page complete
  • Loading branch information
mezotv authored Jan 3, 2025
2 parents 2cc92da + a8fdb42 commit b72961c
Show file tree
Hide file tree
Showing 33 changed files with 2,851 additions and 243 deletions.
5 changes: 5 additions & 0 deletions packages/website/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"papaplatte"
]
}
15 changes: 13 additions & 2 deletions packages/website/astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
// @ts-check
import { defineConfig } from 'astro/config';
import { defineConfig } from 'astro/config'

import react from '@astrojs/react'

import tailwind from '@astrojs/tailwind'

// https://astro.build/config
export default defineConfig({});
export default defineConfig({
integrations: [
react(),
tailwind({
applyBaseStyles: false
})
]
})
68 changes: 68 additions & 0 deletions packages/website/biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
"useIgnoreFile": false
},
"organizeImports": {
"enabled": false
},
"files": {
"ignoreUnknown": false,
"ignore": [
"node_modules",
"dist",
"build",
"coverage",
".next",
".github",
".vscode",
".idea",
".DS_Store",
".git",
".gitignore",
".gitattributes",
".npmrc",
".pnp.js",
".pnp.cjs",
".pnp.mjs",
".pnp.json",
".pnp.yaml",
".pnp.yml",
".pnp.lock",
".pnpify",
".env*"
]
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"formatter": {
"enabled": true,
"useEditorconfig": true,
"formatWithErrors": false,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 80,
"attributePosition": "auto",
"bracketSpacing": true
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
"quoteProperties": "asNeeded",
"trailingCommas": "none",
"semicolons": "asNeeded",
"arrowParentheses": "always",
"bracketSameLine": false,
"quoteStyle": "single",
"attributePosition": "auto",
"bracketSpacing": true
}
}
}
21 changes: 21 additions & 0 deletions packages/website/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.mjs",
"css": "styles/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
24 changes: 22 additions & 2 deletions packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,28 @@
"astro": "astro"
},
"dependencies": {
"astro": "^4.15.6",
"@astrojs/check": "^0.9.3",
"@astrojs/react": "^4.1.2",
"@astrojs/tailwind": "^5.1.4",
"@fontsource/twinkle-star": "^5.1.1",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"astro": "^4.15.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.469.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-fast-marquee": "^1.6.5",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.6.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4"
}
}
}
Loading

0 comments on commit b72961c

Please sign in to comment.