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";
export default function CobaPage() {
return (
<>
<ImageSliderBlock />
</>
);
return <>{/* <ImageSliderBlock /> */}</>;
}

View File

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

View File

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

View File

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

View File

@ -60,9 +60,9 @@ export default function Hero6() {
>
Learn More
</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">
<span>Request Consultant</span>
<span>Request Consultation</span>
</button>
</Link>
</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 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 }) {
return (

View File

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

17586
yarn.lock

File diff suppressed because it is too large Load Diff