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;
|
||||
24
src/app/(payload)/admin/[[...segments]]/not-found.tsx
Normal file
24
src/app/(payload)/admin/[[...segments]]/not-found.tsx
Normal file
@ -0,0 +1,24 @@
|
||||
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
||||
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
import config from '@payload-config'
|
||||
import { NotFoundPage, generatePageMetadata } from '@payloadcms/next/views'
|
||||
import { importMap } from '../importMap'
|
||||
|
||||
type Args = {
|
||||
params: Promise<{
|
||||
segments: string[]
|
||||
}>
|
||||
searchParams: Promise<{
|
||||
[key: string]: string | string[]
|
||||
}>
|
||||
}
|
||||
|
||||
export const generateMetadata = ({ params, searchParams }: Args): Promise<Metadata> =>
|
||||
generatePageMetadata({ config, params, searchParams })
|
||||
|
||||
const NotFound = ({ params, searchParams }: Args) =>
|
||||
NotFoundPage({ config, params, searchParams, importMap })
|
||||
|
||||
export default NotFound
|
||||
24
src/app/(payload)/admin/[[...segments]]/page.tsx
Normal file
24
src/app/(payload)/admin/[[...segments]]/page.tsx
Normal file
@ -0,0 +1,24 @@
|
||||
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
||||
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
||||
import type { Metadata } from 'next'
|
||||
|
||||
import config from '@payload-config'
|
||||
import { RootPage, generatePageMetadata } from '@payloadcms/next/views'
|
||||
import { importMap } from '../importMap'
|
||||
|
||||
type Args = {
|
||||
params: Promise<{
|
||||
segments: string[]
|
||||
}>
|
||||
searchParams: Promise<{
|
||||
[key: string]: string | string[]
|
||||
}>
|
||||
}
|
||||
|
||||
export const generateMetadata = ({ params, searchParams }: Args): Promise<Metadata> =>
|
||||
generatePageMetadata({ config, params, searchParams })
|
||||
|
||||
const Page = ({ params, searchParams }: Args) =>
|
||||
RootPage({ config, params, searchParams, importMap })
|
||||
|
||||
export default Page
|
||||
1
src/app/(payload)/admin/importMap.js
Normal file
1
src/app/(payload)/admin/importMap.js
Normal file
@ -0,0 +1 @@
|
||||
export const importMap = {}
|
||||
19
src/app/(payload)/api/[...slug]/route.ts
Normal file
19
src/app/(payload)/api/[...slug]/route.ts
Normal file
@ -0,0 +1,19 @@
|
||||
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
||||
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
||||
import config from '@payload-config'
|
||||
import '@payloadcms/next/css'
|
||||
import {
|
||||
REST_DELETE,
|
||||
REST_GET,
|
||||
REST_OPTIONS,
|
||||
REST_PATCH,
|
||||
REST_POST,
|
||||
REST_PUT,
|
||||
} from '@payloadcms/next/routes'
|
||||
|
||||
export const GET = REST_GET(config)
|
||||
export const POST = REST_POST(config)
|
||||
export const DELETE = REST_DELETE(config)
|
||||
export const PATCH = REST_PATCH(config)
|
||||
export const PUT = REST_PUT(config)
|
||||
export const OPTIONS = REST_OPTIONS(config)
|
||||
7
src/app/(payload)/api/graphql-playground/route.ts
Normal file
7
src/app/(payload)/api/graphql-playground/route.ts
Normal file
@ -0,0 +1,7 @@
|
||||
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
||||
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
||||
import config from '@payload-config'
|
||||
import '@payloadcms/next/css'
|
||||
import { GRAPHQL_PLAYGROUND_GET } from '@payloadcms/next/routes'
|
||||
|
||||
export const GET = GRAPHQL_PLAYGROUND_GET(config)
|
||||
8
src/app/(payload)/api/graphql/route.ts
Normal file
8
src/app/(payload)/api/graphql/route.ts
Normal file
@ -0,0 +1,8 @@
|
||||
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
||||
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
||||
import config from '@payload-config'
|
||||
import { GRAPHQL_POST, REST_OPTIONS } from '@payloadcms/next/routes'
|
||||
|
||||
export const POST = GRAPHQL_POST(config)
|
||||
|
||||
export const OPTIONS = REST_OPTIONS(config)
|
||||
0
src/app/(payload)/custom.scss
Normal file
0
src/app/(payload)/custom.scss
Normal file
31
src/app/(payload)/layout.tsx
Normal file
31
src/app/(payload)/layout.tsx
Normal file
@ -0,0 +1,31 @@
|
||||
/* THIS FILE WAS GENERATED AUTOMATICALLY BY PAYLOAD. */
|
||||
/* DO NOT MODIFY IT BECAUSE IT COULD BE REWRITTEN AT ANY TIME. */
|
||||
import config from '@payload-config'
|
||||
import '@payloadcms/next/css'
|
||||
import type { ServerFunctionClient } from 'payload'
|
||||
import { handleServerFunctions, RootLayout } from '@payloadcms/next/layouts'
|
||||
import React from 'react'
|
||||
|
||||
import { importMap } from './admin/importMap.js'
|
||||
import './custom.scss'
|
||||
|
||||
type Args = {
|
||||
children: React.ReactNode
|
||||
}
|
||||
|
||||
const serverFunction: ServerFunctionClient = async function (args) {
|
||||
'use server'
|
||||
return handleServerFunctions({
|
||||
...args,
|
||||
config,
|
||||
importMap,
|
||||
})
|
||||
}
|
||||
|
||||
const Layout = ({ children }: Args) => (
|
||||
<RootLayout config={config} importMap={importMap} serverFunction={serverFunction}>
|
||||
{children}
|
||||
</RootLayout>
|
||||
)
|
||||
|
||||
export default Layout
|
||||
Reference in New Issue
Block a user