Compare commits
No commits in common. "d2062a9d0c3d05e571c55fdd9b8a489ce05055ea" and "72a31ce704a425f513df812c51f4356e93b1a7ed" have entirely different histories.
d2062a9d0c
...
72a31ce704
@ -1,5 +1,9 @@
|
||||
import { ImageSliderBlock } from "@/components/Blocks/ImageSlider";
|
||||
|
||||
export default function CobaPage() {
|
||||
return <>{/* <ImageSliderBlock /> */}</>;
|
||||
return (
|
||||
<>
|
||||
<ImageSliderBlock />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ import Hero from "@/components/Hero";
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
const ParallaxContainer = dynamic(() => import("@/components/ParallaxContainer"), {
|
||||
ssr: false,
|
||||
ssr: true,
|
||||
});
|
||||
|
||||
export default function Home1BGVideoMultiPage() {
|
||||
|
@ -1,7 +1,6 @@
|
||||
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";
|
||||
@ -37,7 +36,7 @@ export const Pages: CollectionConfig = {
|
||||
label: "Page Layout",
|
||||
type: "blocks",
|
||||
minRows: 1,
|
||||
blocks: [ContentBlock, BeforeFooterBlock, OurTeamBlock, HorizontalImageContentBlock, ImageSliderBlock],
|
||||
blocks: [ContentBlock, BeforeFooterBlock, OurTeamBlock, HorizontalImageContentBlock],
|
||||
},
|
||||
{
|
||||
name: "meta",
|
||||
|
@ -5,14 +5,12 @@ 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<{
|
||||
|
@ -60,9 +60,9 @@ export default function Hero6() {
|
||||
>
|
||||
Learn More
|
||||
</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">
|
||||
<span>Request Consultation</span>
|
||||
<span>Request Consultant</span>
|
||||
</button>
|
||||
</Link>
|
||||
</div>
|
||||
|
@ -1,10 +1,12 @@
|
||||
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 React from "react";
|
||||
|
||||
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 (
|
||||
|
@ -197,17 +197,6 @@ 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?: {
|
||||
@ -580,18 +569,6 @@ 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user