mirror of
https://github.com/tuna2134/cecilia.git
synced 2026-07-26 07:01:34 +00:00
feat: initialize project with Tailwind CSS, TypeScript, and basic layout
- Add globals.css to import Tailwind CSS styles - Create layout.tsx for the root layout with metadata and font integration - Implement Header component with title and subtitle - Set up tsconfig.json for TypeScript configuration
This commit is contained in:
10
src/components/Header.tsx
Normal file
10
src/components/Header.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
const Header: React.FC = () => {
|
||||
return (
|
||||
<header className="w-full flex flex-col items-center gap-1 py-4 border-b border-gray-400">
|
||||
<small className="text-sm">tuna2134の休憩</small>
|
||||
<h1 className="text-4xl font-bold">tuna2134</h1>
|
||||
</header>
|
||||
)
|
||||
}
|
||||
|
||||
export default Header;
|
||||
Reference in New Issue
Block a user