Compare commits

..

No commits in common. "d2062a9d0c3d05e571c55fdd9b8a489ce05055ea" and "72a31ce704a425f513df812c51f4356e93b1a7ed" have entirely different histories.

8 changed files with 7236 additions and 10402 deletions

View File

@ -1,5 +1,9 @@
import { ImageSliderBlock } from "@/components/Blocks/ImageSlider"; import { ImageSliderBlock } from "@/components/Blocks/ImageSlider";
export default function CobaPage() { export default function CobaPage() {
return <>{/* <ImageSliderBlock /> */}</>; return (
<>
<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: false, ssr: true,
}); });
export default function Home1BGVideoMultiPage() { export default function Home1BGVideoMultiPage() {

View File

@ -1,7 +1,6 @@
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";
@ -37,7 +36,7 @@ export const Pages: CollectionConfig = {
label: "Page Layout", label: "Page Layout",
type: "blocks", type: "blocks",
minRows: 1, minRows: 1,
blocks: [ContentBlock, BeforeFooterBlock, OurTeamBlock, HorizontalImageContentBlock, ImageSliderBlock], blocks: [ContentBlock, BeforeFooterBlock, OurTeamBlock, HorizontalImageContentBlock],
}, },
{ {
name: "meta", name: "meta",

View File

@ -5,14 +5,12 @@ 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="/contact"> <Link href="/radixact">
<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 Consultation</span> <span>Request Consultant</span>
</button> </button>
</Link> </Link>
</div> </div>

View File

@ -1,10 +1,12 @@
import { features4 } from "@/data/features"; import React from "react";
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,17 +197,6 @@ 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?: {
@ -580,18 +569,6 @@ 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