first commit
This commit is contained in:
28
src/app/page.tsx
Normal file
28
src/app/page.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user