chore: initiate the website file

This commit is contained in:
RiO
2024-12-27 06:16:26 +05:30
commit 2d9c1ea88f
30 changed files with 7255 additions and 0 deletions

17
src/components/Header.tsx Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react';
import { Database } from 'lucide-react';
import { ThemeToggle } from './ThemeToggle';
import { Logo } from './Logo';
export function Header() {
return (
<header className="bg-gradient-to-r from-nord-9 to-nord-10 text-nord-6 shadow-lg">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-6">
<div className="flex items-center justify-between">
<Logo />
<ThemeToggle />
</div>
</div>
</header>
);
}