Autosave: 20260313-014407

This commit is contained in:
Flatlogic Bot 2026-03-13 01:44:08 +00:00
parent d8fd7aae82
commit d276e2f765
4 changed files with 83 additions and 112 deletions

View File

@ -1,119 +1,13 @@
import { useState } from 'react'
import reactLogo from './assets/react.svg'
import viteLogo from './assets/vite.svg'
import heroImg from './assets/hero.png'
import './App.css'
import Header from './Header';
import LoginPage from './LoginPage';
function App() {
const [count, setCount] = useState(0)
return (
<>
<section id="center">
<div className="hero">
<img src={heroImg} className="base" width="170" height="179" alt="" />
<img src={reactLogo} className="framework" alt="React logo" />
<img src={viteLogo} className="vite" alt="Vite logo" />
</div>
<div>
<h1>Get started</h1>
<p>
Edit <code>src/App.tsx</code> and save to test <code>HMR</code>
</p>
</div>
<button
className="counter"
onClick={() => setCount((count) => count + 1)}
>
Count is {count}
</button>
</section>
<div className="ticks"></div>
<section id="next-steps">
<div id="docs">
<svg className="icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#documentation-icon"></use>
</svg>
<h2>Documentation</h2>
<p>Your questions, answered</p>
<ul>
<li>
<a href="https://vite.dev/" target="_blank">
<img className="logo" src={viteLogo} alt="" />
Explore Vite
</a>
</li>
<li>
<a href="https://react.dev/" target="_blank">
<img className="button-icon" src={reactLogo} alt="" />
Learn more
</a>
</li>
</ul>
</div>
<div id="social">
<svg className="icon" role="presentation" aria-hidden="true">
<use href="/icons.svg#social-icon"></use>
</svg>
<h2>Connect with us</h2>
<p>Join the Vite community</p>
<ul>
<li>
<a href="https://github.com/vitejs/vite" target="_blank">
<svg
className="button-icon"
role="presentation"
aria-hidden="true"
>
<use href="/icons.svg#github-icon"></use>
</svg>
GitHub
</a>
</li>
<li>
<a href="https://chat.vite.dev/" target="_blank">
<svg
className="button-icon"
role="presentation"
aria-hidden="true"
>
<use href="/icons.svg#discord-icon"></use>
</svg>
Discord
</a>
</li>
<li>
<a href="https://x.com/vite_js" target="_blank">
<svg
className="button-icon"
role="presentation"
aria-hidden="true"
>
<use href="/icons.svg#x-icon"></use>
</svg>
X.com
</a>
</li>
<li>
<a href="https://bsky.app/profile/vite.dev" target="_blank">
<svg
className="button-icon"
role="presentation"
aria-hidden="true"
>
<use href="/icons.svg#bluesky-icon"></use>
</svg>
Bluesky
</a>
</li>
</ul>
</div>
</section>
<div className="ticks"></div>
<section id="spacer"></section>
<Header />
<main>
<LoginPage />
</main>
</>
)
}

11
frontend/src/Header.tsx Normal file
View File

@ -0,0 +1,11 @@
export default function Header() {
return (
<header className="bg-white shadow-sm p-4 flex justify-between items-center">
<h1 className="text-xl font-bold">MyApp</h1>
<nav>
<button className="text-gray-600 hover:text-gray-900 mx-2">Products</button>
<button className="text-blue-500 hover:text-blue-700 mx-2">Login</button>
</nav>
</header>
);
}

View File

@ -0,0 +1,48 @@
import { useState } from 'react';
export default function LoginPage() {
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
console.log('Login attempt:', { username, password });
// TODO: Implement actual JWT authentication logic here
};
return (
<div className="flex min-h-screen items-center justify-center bg-gray-100">
<div className="w-full max-w-md rounded-lg bg-white p-8 shadow-md">
<h2 className="mb-6 text-center text-2xl font-bold">Login</h2>
<form onSubmit={handleSubmit}>
<div className="mb-4">
<label className="mb-2 block text-sm font-bold text-gray-700">Username</label>
<input
type="text"
className="w-full rounded border px-3 py-2"
value={username}
onChange={(e) => setUsername(e.target.value)}
required
/>
</div>
<div className="mb-6">
<label className="mb-2 block text-sm font-bold text-gray-700">Password</label>
<input
type="password"
className="w-full rounded border px-3 py-2"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
/>
</div>
<button
type="submit"
className="w-full rounded bg-blue-500 px-4 py-2 font-bold text-white hover:bg-blue-700"
>
Sign In
</button>
</form>
</div>
</div>
);
}

View File

@ -0,0 +1,18 @@
interface Product {
name: string;
price: number;
description: string;
}
export default function ProductCard({ product }: { product: Product }) {
return (
<div className="rounded-lg border bg-white p-4 shadow-sm hover:shadow-md">
<h3 className="text-lg font-bold">{product.name}</h3>
<p className="text-gray-600">${product.price.toFixed(2)}</p>
<p className="mt-2 text-sm text-gray-500">{product.description}</p>
<button className="mt-4 w-full rounded bg-blue-500 px-4 py-2 font-bold text-white hover:bg-blue-700">
Add to Cart
</button>
</div>
);
}