Formatted whole project

This commit is contained in:
2025-12-18 21:44:23 +01:00
parent 6a7b08a30b
commit f314a0672a
11 changed files with 297 additions and 189 deletions

View File

@@ -1,18 +1,19 @@
import React from 'react';
import { Navbar } from './components/Navbar';
import { Footer } from './components/Footer';
import { Hero } from './sections/Hero';
import { Projects } from './sections/Projects';
import { Team } from './sections/Team';
import {Navbar} from './components/Navbar';
import {Footer} from './components/Footer';
import {Hero} from './sections/Hero';
import {Projects} from './sections/Projects';
import {Team} from './sections/Team';
export default function LiquidDevelopment() {
return (
<div className="min-h-screen bg-[#0e0e0e] text-white font-sans selection:bg-[#00A3FF] selection:text-white overflow-x-hidden">
<Navbar />
<Hero />
<Projects />
<Team />
<Footer />
</div>
);
return (
<div
className="min-h-screen bg-[#0e0e0e] text-white font-sans selection:bg-[#00A3FF] selection:text-white overflow-x-hidden">
<Navbar/>
<Hero/>
<Projects/>
<Team/>
<Footer/>
</div>
);
}