home page parts

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-22 20:45:26 +05:00
parent ff10553786
commit ff21ccb2af
16 changed files with 579 additions and 17 deletions

View File

@@ -125,5 +125,25 @@
}
.loi{
color:#d2610ab0;
}
color:#a60404ad;
}
.gradient-text {
background: linear-gradient(
to bottom right,
#ffffff 0%,
#ffffff 50%,
rgba(255, 255, 255, 0.5) 100%
);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
/*
text gradient tailwindd classlari
bg-linear-to-br from-white via-white to-white/50
text-transparent bg-clip-text
*/

View File

@@ -1,10 +1,23 @@
import { Banner, Statistics } from "@/components/pages/home";
import {
AboutUs,
Banner,
Line,
OurService,
Statistics,
Testimonial,
Video,
} from "@/components/pages/home";
export default function Home() {
return (
<main className="bg-slate-950 mb-50">
<main className="bg-slate-950 mb-90">
<Banner />
<Statistics />
<AboutUs />
<Video />
<OurService />
<Testimonial />
<Line/>
</main>
);
}