Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="/src/style.css" rel="stylesheet">
<link href="/src/style.css" rel="stylesheet" />
<title>groupa</title>
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Layout.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import React from "react";

export default function Layout({ children }) {
return (
Expand All @@ -18,4 +18,4 @@ export default function Layout({ children }) {
</footer>
</div>
);
}
}
69 changes: 43 additions & 26 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,38 +9,55 @@
color: rgba(255, 255, 255, 0.87);
background-color: #242424;


/* project-level base customizations */
:root {
--bg: #0b1221;
}

html,body,#root { height: 100%; }
body {
@apply bg-[var(--bg)] text-slate-100 antialiased;
}

/* small helper classes (if you need more, extend in tailwind.config.cjs) */
.brand { @apply font-semibold tracking-wide; }
.card { @apply bg-white/5 p-5 rounded-lg mt-4; }
.muted { @apply text-slate-400; }
@layer base {
/* project-level base customizations */
:root {
--bg: #0b1221;
}

html, body, #root { height: 100%; }

html,
body,
#root {
height: 100%;
}
body {
@apply bg-[var(--bg)] text-slate-100 antialiased;
}
}

@layer components {
.brand { @apply font-semibold tracking-wide; }
.card { @apply bg-white/5 p-5 rounded-lg mt-4; }
.muted { @apply text-slate-400; }
}

/* small helper classes (if you need more, extend in tailwind.config.cjs) */
.brand {
@apply font-semibold tracking-wide;
}
.card {
@apply bg-white/5 p-5 rounded-lg mt-4;
}
.muted {
@apply text-slate-400;
}
@layer base {
:root {
--bg: #0b1221;
}

html,
body,
#root {
height: 100%;
}

body {
@apply bg-[var(--bg)] text-slate-100 antialiased;
}
}

}
@layer components {
.brand {
@apply font-semibold tracking-wide;
}
.card {
@apply bg-white/5 p-5 rounded-lg mt-4;
}
.muted {
@apply text-slate-400;
}
}
}
51 changes: 37 additions & 14 deletions wrangler.jsonc
Original file line number Diff line number Diff line change
@@ -1,23 +1,46 @@

/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "groupa",
"main": "worker/index.js",
"compatibility_date": "2025-12-09",
"compatibility_date": "2025-12-02",
"assets": {
"binding": "ASSETS",
"directory": "./public",
"not_found_handling": "single-page-application"
"not_found_handling": "single-page-application",
},
"observability": {
"enabled": true
"enabled": true,
},
"d1_databases": [
{
"binding": "DB",
"database_name": "webken-18",
"database_id": "webken-18",
"migrations_dir": "drizzle"
}
]
/**
* Smart Placement
* Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
*/
// "placement": { "mode": "smart" }
/**
* Bindings
* Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
* databases, object storage, AI inference, real-time communication and more.
* https://developers.cloudflare.com/workers/runtime-apis/bindings/
*/
/**
* Environment Variables
* https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
*/
// "vars": { "MY_VARIABLE": "production_value" }
/**
* Note: Use secrets to store sensitive data.
* https://developers.cloudflare.com/workers/configuration/secrets/
*/
/**
* Static Assets
* https://developers.cloudflare.com/workers/static-assets/binding/
*/
// "assets": { "directory": "./public/", "binding": "ASSETS" }
/**
* Service Bindings (communicate between multiple Workers)
* https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
*/
// "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
}