Compare commits

...

5 Commits

8 changed files with 10402 additions and 7236 deletions

View File

@ -1,9 +1,5 @@
import { ImageSliderBlock } from "@/components/Blocks/ImageSlider"; import { ImageSliderBlock } from "@/components/Blocks/ImageSlider";
export default function CobaPage() { export default function CobaPage() {
return ( return <>{/* <ImageSliderBlock /> */}</>;
<>
<ImageSliderBlock />
</>
);
} }

View File

@ -3,7 +3,7 @@ import Hero from "@/components/Hero";
import dynamic from "next/dynamic"; import dynamic from "next/dynamic";
const ParallaxContainer = dynamic(() => import("@/components/ParallaxContainer"), { const ParallaxContainer = dynamic(() => import("@/components/ParallaxContainer"), {
ssr: true, ssr: false,
}); });
export default function Home1BGVideoMultiPage() { export default function Home1BGVideoMultiPage() {

View File

@ -1,6 +1,7 @@
import { BeforeFooterBlock } from "@/blocks/BeforeFooter"; import { BeforeFooterBlock } from "@/blocks/BeforeFooter";
import { ContentBlock } from "@/blocks/Content"; import { ContentBlock } from "@/blocks/Content";
import { HorizontalImageContentBlock } from "@/blocks/HorizontalImageContent"; import { HorizontalImageContentBlock } from "@/blocks/HorizontalImageContent";
import { ImageSliderBlock } from "@/blocks/ImageSlider";
import { OurTeamBlock } from "@/blocks/OurTeam"; import { OurTeamBlock } from "@/blocks/OurTeam";
import formatSlug from "@/utils/formatSlug"; import formatSlug from "@/utils/formatSlug";
import { CollectionConfig } from "payload"; import { CollectionConfig } from "payload";
@ -36,7 +37,7 @@ export const Pages: CollectionConfig = {
label: "Page Layout", label: "Page Layout",
type: "blocks", type: "blocks",
minRows: 1, minRows: 1,
blocks: [ContentBlock, BeforeFooterBlock, OurTeamBlock, HorizontalImageContentBlock], blocks: [ContentBlock, BeforeFooterBlock, OurTeamBlock, HorizontalImageContentBlock, ImageSliderBlock],
}, },
{ {
name: "meta", name: "meta",

View File

@ -5,12 +5,14 @@ import { ContentBlock } from "./Content";
import { BeforeFooterBlock } from "./BeforeFooter"; import { BeforeFooterBlock } from "./BeforeFooter";
import { OurTeamBlock } from "./OurTeam"; import { OurTeamBlock } from "./OurTeam";
import { HorizontalImageContentBlock } from "./HorizontalImageContent"; import { HorizontalImageContentBlock } from "./HorizontalImageContent";
import { ImageSliderBlock } from "./ImageSlider";
const blockComponents = { const blockComponents = {
contentBlock: ContentBlock, contentBlock: ContentBlock,
beforeFooterBlock: BeforeFooterBlock, beforeFooterBlock: BeforeFooterBlock,
ourTeamBlock: OurTeamBlock, ourTeamBlock: OurTeamBlock,
horizontalImageContentBlock: HorizontalImageContentBlock, horizontalImageContentBlock: HorizontalImageContentBlock,
imageSliderBlock: ImageSliderBlock,
}; };
export const RenderBlocks: React.FC<{ export const RenderBlocks: React.FC<{

View File

@ -60,9 +60,9 @@ export default function Hero6() {
> >
Learn More Learn More
</a> </a>
<Link href="/radixact"> <Link href="/contact">
<button className="btn btn-mod btn-w btn-border-w btn-round btn-large btn-hover-anim ms-1 me-1 mt-2 align-middle w-full md:w-1/4"> <button className="btn btn-mod btn-w btn-border-w btn-round btn-large btn-hover-anim ms-1 me-1 mt-2 align-middle w-full md:w-1/4">
<span>Request Consultant</span> <span>Request Consultation</span>
</button> </button>
</Link> </Link>
</div> </div>

View File

@ -1,12 +1,10 @@
import React from "react"; import { features4 } from "@/data/features";
import Image from "next/image";
import Link from "next/link";
import Blog from "./Blogs/Blog";
import Cta3 from "./cta3";
import Facts from "./Facts"; import Facts from "./Facts";
import Service from "./Service"; import Service from "./Service";
import Image from "next/image";
import Blog from "./Blogs/Blog";
import Link from "next/link";
import { features4 } from "@/data/features";
import Cta3 from "./cta3";
export default function homepage({ onePage = false, dark = false }) { export default function homepage({ onePage = false, dark = false }) {
return ( return (

View File

@ -197,6 +197,17 @@ export interface Page {
blockName?: string | null; blockName?: string | null;
blockType: 'horizontalImageContentBlock'; blockType: 'horizontalImageContentBlock';
} }
| {
images?:
| {
image?: (number | null) | Media;
id?: string | null;
}[]
| null;
id?: string | null;
blockName?: string | null;
blockType: 'imageSliderBlock';
}
)[] )[]
| null; | null;
meta?: { meta?: {
@ -569,6 +580,18 @@ export interface PagesSelect<T extends boolean = true> {
id?: T; id?: T;
blockName?: T; blockName?: T;
}; };
imageSliderBlock?:
| T
| {
images?:
| T
| {
image?: T;
id?: T;
};
id?: T;
blockName?: T;
};
}; };
meta?: meta?:
| T | T

17586
yarn.lock

File diff suppressed because it is too large Load Diff