first commit

This commit is contained in:
“dongming”
2025-12-19 12:19:14 +08:00
commit 400b1177c0
145 changed files with 5939 additions and 0 deletions

28
src/app/page.tsx Normal file
View File

@@ -0,0 +1,28 @@
import React from 'react'
import { Metadata } from "next";
import Hero from '@/components/Home/Hero';
import Counter from '@/components/Home/Counter'
import Progresswork from '@/components/Home/WorkProgress';
import Services from '@/components/Home/Services';
import Portfolio from '@/components/SharedComponent/portfollio'
import Testimonial from '@/components/SharedComponent/Testimonial'
import Blog from '@/components/SharedComponent/Blog'
import Contactform from '@/components/Home/Contact';
export const metadata: Metadata = {
title: "Venus",
};
export default function Home() {
return (
<main>
<Hero />
<Counter isColorMode={false} />
<Progresswork isColorMode={false} />
<Services />
<Portfolio />
<Testimonial />
<Blog />
<Contactform />
</main>
)
}