Compare commits
No commits in common. "39769d4313b1d5f84da4432b936285934de79ace" and "7ce9b0e2b12dc4cb6b11209bc84310b516fc5ec8" have entirely different histories.
39769d4313
...
7ce9b0e2b1
@ -10,7 +10,6 @@
|
|||||||
--ext-color-primary-5: #e7ccc0;
|
--ext-color-primary-5: #e7ccc0;
|
||||||
--ext-color-primary-6: #64b3b4;
|
--ext-color-primary-6: #64b3b4;
|
||||||
--ext-color-primary-7: #a8dcca;
|
--ext-color-primary-7: #a8dcca;
|
||||||
--ext-color-primary-8: #e3b19b;
|
|
||||||
--background: #ffffff;
|
--background: #ffffff;
|
||||||
--foreground: #171717;
|
--foreground: #171717;
|
||||||
}
|
}
|
||||||
@ -24,7 +23,6 @@
|
|||||||
--ext-color-primary-5: #e7ccc0;
|
--ext-color-primary-5: #e7ccc0;
|
||||||
--ext-color-primary-6: #64b3b4;
|
--ext-color-primary-6: #64b3b4;
|
||||||
--ext-color-primary-7: #a8dcca;
|
--ext-color-primary-7: #a8dcca;
|
||||||
--ext-color-primary-8: #e3b19b;
|
|
||||||
--background: #0a0a0a;
|
--background: #0a0a0a;
|
||||||
--foreground: #ededed;
|
--foreground: #ededed;
|
||||||
}
|
}
|
||||||
|
@ -52,7 +52,7 @@ export function BeforeFooterBlock({ title, description, buttonText, showLinier =
|
|||||||
<div className="pt-5">
|
<div className="pt-5">
|
||||||
<Link
|
<Link
|
||||||
href="/contact"
|
href="/contact"
|
||||||
className="inline-block bg-extColorPrimary6 hover:bg-extColorPrimary8 text-white py-3 px-6 rounded-full text-lg shadow-lg transition-all duration-500"
|
className="inline-block bg-[#2E2D51] hover:bg-[#232244] text-white py-3 px-6 rounded-full text-lg shadow-lg transition-all"
|
||||||
>
|
>
|
||||||
{buttonText ?? placeholderButtonText} →
|
{buttonText ?? placeholderButtonText} →
|
||||||
</Link>
|
</Link>
|
||||||
|
@ -16,17 +16,23 @@ const shareIcons: Record<string, any> = {
|
|||||||
|
|
||||||
export default function HeroOther({ title, img, createdAt, shareUrl }: HeroOtherProps) {
|
export default function HeroOther({ title, img, createdAt, shareUrl }: HeroOtherProps) {
|
||||||
return (
|
return (
|
||||||
<section className="page-section bg-dark-1 bg-gradient-gray-dark-1 light-content bg-scroll overflow-hidden !py-20 md:!pt-32 md:!pb-24 relative min-h-[48vh]">
|
<section className="page-section bg-dark-1 bg-gradient-gray-dark-1 light-content bg-scroll overflow-hidden !py-20 md:!py-48 relative !h-[30vw]">
|
||||||
{/* <!-- Background Shape --> */}
|
{/* <!-- Background Shape --> */}
|
||||||
<div className="bg-shape-1 w-full h-full opacity-50 bg-contain">
|
<div className="bg-shape-1 w-full h-full opacity-50 bg-contain">
|
||||||
<Image src={img || "/assets/images/hero-default.webp"} alt="" fill className="object-cover" />
|
<Image
|
||||||
|
src={img || "/assets/images/hero-default.webp"}
|
||||||
|
width={1000}
|
||||||
|
height={500}
|
||||||
|
alt=""
|
||||||
|
className="w-screen h-screen object-cover object-center"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
{/* <!-- End Background Shape --> */}
|
{/* <!-- End Background Shape --> */}
|
||||||
|
|
||||||
<div className="container position-relative pt-sm-40 text-center">
|
<div className="container position-relative pt-sm-40 text-center">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
<div className="col-md-10 offset-md-1 col-lg-8 offset-lg-2">
|
<div className="col-md-10 offset-md-1 col-lg-8 offset-lg-2">
|
||||||
<h1 className="text-5xl !font-medium mb-10 leading-[1.5]">{title ?? ""}</h1>
|
<h1 className="hs-title-10 mb-10">{title ?? ""}</h1>
|
||||||
{!!createdAt && (
|
{!!createdAt && (
|
||||||
<div className="blog-item-data mb-0 wow fadeIn" data-wow-delay="0.2s">
|
<div className="blog-item-data mb-0 wow fadeIn" data-wow-delay="0.2s">
|
||||||
<div className="flex justify-center items-center">
|
<div className="flex justify-center items-center">
|
||||||
|
@ -18,7 +18,6 @@ export default {
|
|||||||
extColorPrimary5: "var(--ext-color-primary-5)",
|
extColorPrimary5: "var(--ext-color-primary-5)",
|
||||||
extColorPrimary6: "var(--ext-color-primary-6)",
|
extColorPrimary6: "var(--ext-color-primary-6)",
|
||||||
extColorPrimary7: "var(--ext-color-primary-7)",
|
extColorPrimary7: "var(--ext-color-primary-7)",
|
||||||
extColorPrimary8: "var(--ext-color-primary-8)",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user