pushing all files
This commit is contained in:
12
src/app/(frontend)/[not-found]/page.jsx
Normal file
12
src/app/(frontend)/[not-found]/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ErrorPage from '@/src/components/pages/error';
|
||||
import React from 'react';
|
||||
|
||||
const NotFound = () => {
|
||||
return (
|
||||
<>
|
||||
<ErrorPage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default NotFound;
|
||||
11
src/app/(frontend)/about-us/page.jsx
Normal file
11
src/app/(frontend)/about-us/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import AboutUs from "@/src/components/pages/about";
|
||||
|
||||
const About = () => {
|
||||
return (
|
||||
<>
|
||||
<AboutUs />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default About;
|
||||
12
src/app/(frontend)/blog-standard/page.jsx
Normal file
12
src/app/(frontend)/blog-standard/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import BlogStandardPage from "@/src/components/pages/blogs/blog-standard";
|
||||
|
||||
|
||||
const BlogStandard = () => {
|
||||
return (
|
||||
<>
|
||||
<BlogStandardPage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default BlogStandard;
|
||||
20
src/app/(frontend)/blog/[id]/page.jsx
Normal file
20
src/app/(frontend)/blog/[id]/page.jsx
Normal file
@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import blogData from '@/src/components/data/blog-data';
|
||||
import BlogDetails from '@/src/components/pages/blogs/blog-details';
|
||||
|
||||
const BlogDetail = () => {
|
||||
const params = useParams();
|
||||
const singleData = blogData?.find((blog) => blog.id === params.id);
|
||||
const router = useRouter();
|
||||
if (!singleData) {
|
||||
return router.push("/404-error");
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<BlogDetails singleData={singleData} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default BlogDetail;
|
||||
12
src/app/(frontend)/blog/page.jsx
Normal file
12
src/app/(frontend)/blog/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import BlogGrid from "@/src/components/pages/blogs/blog";
|
||||
|
||||
|
||||
const Blog = () => {
|
||||
return (
|
||||
<>
|
||||
<BlogGrid />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Blog;
|
||||
12
src/app/(frontend)/contact-four/page.jsx
Normal file
12
src/app/(frontend)/contact-four/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ContactFour from '@/src/components/pages/contacts/contact-four';
|
||||
import React from 'react';
|
||||
|
||||
const ContactPage = () => {
|
||||
return (
|
||||
<>
|
||||
<ContactFour />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactPage;
|
||||
12
src/app/(frontend)/contact-three/page.jsx
Normal file
12
src/app/(frontend)/contact-three/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ContactThree from '@/src/components/pages/contacts/contact-three';
|
||||
import React from 'react';
|
||||
|
||||
const ContactPage = () => {
|
||||
return (
|
||||
<>
|
||||
<ContactThree />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactPage;
|
||||
12
src/app/(frontend)/contact-two/page.jsx
Normal file
12
src/app/(frontend)/contact-two/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ContactTwo from '@/src/components/pages/contacts/contact-two';
|
||||
import React from 'react';
|
||||
|
||||
const ContactPage = () => {
|
||||
return (
|
||||
<>
|
||||
<ContactTwo />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactPage;
|
||||
12
src/app/(frontend)/contact/page.jsx
Normal file
12
src/app/(frontend)/contact/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ContactUs from '@/src/components/pages/contacts/contact';
|
||||
import React from 'react';
|
||||
|
||||
const ContactPage = () => {
|
||||
return (
|
||||
<>
|
||||
<ContactUs />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ContactPage;
|
||||
11
src/app/(frontend)/faq/page.jsx
Normal file
11
src/app/(frontend)/faq/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import Faq from "@/src/components/pages/faq";
|
||||
|
||||
const FaqPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Faq />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default FaqPage;
|
||||
BIN
src/app/(frontend)/favicon.ico
Normal file
BIN
src/app/(frontend)/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.7 KiB |
14
src/app/(frontend)/globals.css
Normal file
14
src/app/(frontend)/globals.css
Normal file
@ -0,0 +1,14 @@
|
||||
@import 'react-modal-video/css/modal-video.min.css';
|
||||
@import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
@import "swiper/css/bundle";
|
||||
@import "../../../public/assets/css/animate.css";
|
||||
@import "../../../public/assets/css/fontawesome.css";
|
||||
@import "../../../public/assets/css/meanmenu.min.css";
|
||||
@import "../../../public/assets/sass/style.css";
|
||||
@import "../../../public/assets/font/flaticon_conbix.css";
|
||||
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;800&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap');
|
||||
|
||||
|
||||
|
||||
/* @import "../../../../public/assets/css/animate.css"; */
|
||||
11
src/app/(frontend)/home-three/page.jsx
Normal file
11
src/app/(frontend)/home-three/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import HomeThree from "@/src/components/pages/homes/home-3";
|
||||
|
||||
const HomeThr = () => {
|
||||
return (
|
||||
<>
|
||||
<HomeThree addClass="three" />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default HomeThr;
|
||||
11
src/app/(frontend)/home-two/page.jsx
Normal file
11
src/app/(frontend)/home-two/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import HomeTwo from "@/src/components/pages/homes/home-2";
|
||||
|
||||
const About = () => {
|
||||
return (
|
||||
<>
|
||||
<HomeTwo addClass="two" />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default About;
|
||||
27
src/app/(frontend)/layout.jsx
Normal file
27
src/app/(frontend)/layout.jsx
Normal file
@ -0,0 +1,27 @@
|
||||
"use client"
|
||||
import { useEffect } from 'react';
|
||||
import "./globals.css";
|
||||
import SwitchTab from '@/components/pages/common/dark-light';
|
||||
//import SwitchTab from '../../pages/common/dark-light';
|
||||
//import SwitchTab from '@/src/components/pages/common/dark-light';
|
||||
|
||||
//import SwitchTab from '@/src/components/pages/common/dark-light';
|
||||
|
||||
|
||||
export default function RootLayout({ children }) {
|
||||
useEffect(() => {
|
||||
require('bootstrap/dist/js/bootstrap.min.js');
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link rel='icon' type='image/png' href='../favicon.ico' />
|
||||
</head>
|
||||
<body>
|
||||
<SwitchTab />
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
9
src/app/(frontend)/page.jsx
Normal file
9
src/app/(frontend)/page.jsx
Normal file
@ -0,0 +1,9 @@
|
||||
import HomeOne from "@/components/pages/homes/home";
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<>
|
||||
<HomeOne />
|
||||
</>
|
||||
);
|
||||
}
|
||||
11
src/app/(frontend)/portfolio-filter/page.jsx
Normal file
11
src/app/(frontend)/portfolio-filter/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import PortfolioFilterPage from "@/src/components/pages/portfolio/portfolio-filter";
|
||||
|
||||
const PortfolioFilter = () => {
|
||||
return (
|
||||
<>
|
||||
<PortfolioFilterPage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default PortfolioFilter;
|
||||
11
src/app/(frontend)/portfolio/2-columns/page.jsx
Normal file
11
src/app/(frontend)/portfolio/2-columns/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import PortfolioTwoColumns from "@/src/components/pages/portfolio/2-columns";
|
||||
|
||||
const TwoColumns = () => {
|
||||
return (
|
||||
<>
|
||||
<PortfolioTwoColumns />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default TwoColumns;
|
||||
11
src/app/(frontend)/portfolio/3-columns/page.jsx
Normal file
11
src/app/(frontend)/portfolio/3-columns/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import PortfolioThreeColumns from "@/src/components/pages/portfolio/3-columns";
|
||||
|
||||
const ThreeColumns = () => {
|
||||
return (
|
||||
<>
|
||||
<PortfolioThreeColumns />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ThreeColumns;
|
||||
11
src/app/(frontend)/portfolio/4-columns/page.jsx
Normal file
11
src/app/(frontend)/portfolio/4-columns/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import PortfolioFourColumns from "@/src/components/pages/portfolio/4-columns";
|
||||
|
||||
const FourColumns = () => {
|
||||
return (
|
||||
<>
|
||||
<PortfolioFourColumns />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default FourColumns;
|
||||
20
src/app/(frontend)/portfolio/[id]/page.jsx
Normal file
20
src/app/(frontend)/portfolio/[id]/page.jsx
Normal file
@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import portfolioData from '@/src/components/data/portfolio-data';
|
||||
import PortfolioDetails from "@/src/components/pages/portfolio/portfolio-details";
|
||||
|
||||
const PortfolioDetail = () => {
|
||||
const params = useParams();
|
||||
const singleData = portfolioData?.find((portfolio) => portfolio.id === params.id);
|
||||
const router = useRouter();
|
||||
if (!singleData) {
|
||||
return router.push("/404-error");
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<PortfolioDetails singleData={singleData} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default PortfolioDetail;
|
||||
11
src/app/(frontend)/pricing-plans/page.jsx
Normal file
11
src/app/(frontend)/pricing-plans/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import PricingPages from "@/src/components/pages/pricing-plans";
|
||||
|
||||
const Pricing = () => {
|
||||
return (
|
||||
<>
|
||||
<PricingPages />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Pricing;
|
||||
11
src/app/(frontend)/request-quote/page.jsx
Normal file
11
src/app/(frontend)/request-quote/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import RequestQuote from "@/src/components/pages/request-quote";
|
||||
|
||||
const RequestQuotePage = () => {
|
||||
return (
|
||||
<>
|
||||
<RequestQuote />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default RequestQuotePage;
|
||||
12
src/app/(frontend)/services-two/page.jsx
Normal file
12
src/app/(frontend)/services-two/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ServicePageTwo from '@/src/components/pages/services/service-two';
|
||||
import React from 'react';
|
||||
|
||||
const ServiceTwo = () => {
|
||||
return (
|
||||
<>
|
||||
<ServicePageTwo />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ServiceTwo;
|
||||
20
src/app/(frontend)/services/[id]/page.jsx
Normal file
20
src/app/(frontend)/services/[id]/page.jsx
Normal file
@ -0,0 +1,20 @@
|
||||
"use client"
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import ServicesSingle from '@/src/components/pages/services/service-single';
|
||||
import servicesData from '@/src/components/data/services-data';
|
||||
|
||||
const ServicesDetail = () => {
|
||||
const params = useParams();
|
||||
const serviceDetails = servicesData?.find((service) => service.id === params.id);
|
||||
const router = useRouter();
|
||||
if (!serviceDetails) {
|
||||
return router.push("/404-error");
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<ServicesSingle serviceDetails={serviceDetails} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ServicesDetail;
|
||||
12
src/app/(frontend)/services/page.jsx
Normal file
12
src/app/(frontend)/services/page.jsx
Normal file
@ -0,0 +1,12 @@
|
||||
import ServicePage from '@/src/components/pages/services/service';
|
||||
import React from 'react';
|
||||
|
||||
const ServicePages = () => {
|
||||
return (
|
||||
<>
|
||||
<ServicePage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default ServicePages;
|
||||
11
src/app/(frontend)/team-filter/page.jsx
Normal file
11
src/app/(frontend)/team-filter/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import TeamFilterPage from "@/src/components/pages/teams/team-filter";
|
||||
|
||||
const TeamFilter = () => {
|
||||
return (
|
||||
<>
|
||||
<TeamFilterPage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default TeamFilter;
|
||||
11
src/app/(frontend)/team-three/page.jsx
Normal file
11
src/app/(frontend)/team-three/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import TeamPageThree from "@/src/components/pages/teams/team-3";
|
||||
|
||||
const TeamPage = () => {
|
||||
return (
|
||||
<div>
|
||||
<TeamPageThree />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default TeamPage;
|
||||
11
src/app/(frontend)/team-two/page.jsx
Normal file
11
src/app/(frontend)/team-two/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import TeamPageTwo from "@/src/components/pages/teams/team-2";
|
||||
|
||||
const TeamPage = () => {
|
||||
return (
|
||||
<>
|
||||
<TeamPageTwo />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default TeamPage;
|
||||
21
src/app/(frontend)/team/[id]/page.jsx
Normal file
21
src/app/(frontend)/team/[id]/page.jsx
Normal file
@ -0,0 +1,21 @@
|
||||
"use client"
|
||||
import React from 'react';
|
||||
import { useParams, useRouter } from "next/navigation";
|
||||
import teamData from '@/src/components/data/team-data';
|
||||
import TeamSingle from '@/src/components/pages/teams/team-single';
|
||||
|
||||
const TeamMembers = () => {
|
||||
const params = useParams();
|
||||
const teamDetails = teamData.find((team) => team.id === params.id);
|
||||
const router = useRouter();
|
||||
if (!teamDetails) {
|
||||
return router.push("/404-error");
|
||||
}
|
||||
return (
|
||||
<>
|
||||
<TeamSingle teamDetails={teamDetails} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default TeamMembers;
|
||||
11
src/app/(frontend)/team/page.jsx
Normal file
11
src/app/(frontend)/team/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import TeamPage from '@/src/components/pages/teams/team';
|
||||
|
||||
const Team = () => {
|
||||
return (
|
||||
<>
|
||||
<TeamPage />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Team;
|
||||
11
src/app/(frontend)/testimonial/page.jsx
Normal file
11
src/app/(frontend)/testimonial/page.jsx
Normal file
@ -0,0 +1,11 @@
|
||||
import Testimonial from "@/src/components/pages/testimonial";
|
||||
|
||||
const TestimonialPage = () => {
|
||||
return (
|
||||
<>
|
||||
<Testimonial />
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default TestimonialPage;
|
||||
Reference in New Issue
Block a user