index copy created

This commit is contained in:
Selvi 2025-08-08 12:24:39 +05:30
parent 1cb7f9b96c
commit 28841060c2
2 changed files with 41 additions and 1 deletions

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "politian",
"name": "janahan-law",
"lockfileVersion": 2,
"requires": true,
"packages": {

40
pages/index-2.js Normal file
View File

@ -0,0 +1,40 @@
import React, {Fragment} from 'react';
import Navbar from '../components/Navbar/Navbar'
import Hero from '../components/hero/hero';
import Features from '../components/Features/Features';
import About from '../components/about/about';
import ServiceSection from '../components/ServiceSection/ServiceSection';
import CampaignSection from '../components/CampaignSection/CampaignSection';
import Testimonial from '../components/Testimonial/Testimonial';
import FunFact from '../components/FunFact/FunFact';
import TeamSection from '../components/TeamSection/TeamSection';
import BlogSection from '../components/BlogSection/BlogSection';
import InstagramSection from '../components/InstagramSection/InstagramSection';
import Donors from '../components/Donors/Donors';
import PartnerSection from '../components/PartnerSection/PartnerSection';
import abimg from '/public/images/about.jpg'
import Footer from '../components/footer/Footer';
import Scrollbar from '../components/scrollbar/scrollbar';
const HomePage =() => {
return(
<Fragment>
<Navbar hclass={'wpo-site-header-s1'} topbarNone={'topbar-none'} Logo={'/images/logo.svg'}/>
<Hero/>
<Features/>
<About abimg={abimg}/>
<ServiceSection/>
<CampaignSection/>
<Testimonial/>
<FunFact/>
<TeamSection/>
<Donors/>
<BlogSection/>
<InstagramSection/>
<PartnerSection/>
<Footer/>
<Scrollbar/>
</Fragment>
)
};
export default HomePage;