added right partner info

This commit is contained in:
user
2026-01-11 22:02:56 +02:00
parent 40800460c3
commit ddbdd414a4
3 changed files with 54 additions and 21 deletions

BIN
public/ibs.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -1,11 +1,11 @@
--- ---
import MaxWidthWrapper from "./other/max.width.wrapper";
import GridPattern from "@/components/atoms/grid.pattern"; import GridPattern from "@/components/atoms/grid.pattern";
import Title from "@/components/atoms/title"; import Title from "@/components/atoms/title";
import { Button } from "@/components/ui/button"; import { Button } from "@/components/ui/button";
import { cn } from "@/lib/utils";
import { CONTACT_LINK } from "@/lib/constants"; import { CONTACT_LINK } from "@/lib/constants";
import { cn } from "@/lib/utils";
import { Image } from "astro:assets"; import { Image } from "astro:assets";
import MaxWidthWrapper from "./other/max.width.wrapper";
--- ---
<div class="flex flex-col gap-8"> <div class="flex flex-col gap-8">
@@ -47,7 +47,7 @@ import { Image } from "astro:assets";
<Button <Button
size={"lg"} size={"lg"}
className="w-full sm:w-max" className="w-full sm:w-max"
variant="lime" variant="brand"
> >
Call Now Call Now
</Button> </Button>

View File

@@ -77,28 +77,61 @@ const contactLink = getContactLink(page);
<div <div
class="mt-16 border-t border-blue-50/10 pt-8 sm:mt-20 lg:mt-24" class="mt-16 border-t border-blue-50/10 pt-8 sm:mt-20 lg:mt-24"
> >
<div class="flex flex-col gap-4"> <div class="flex flex-col gap-8">
<p class="text-xs leading-5 text-blue-50"> <p class="text-xs leading-5 text-blue-50">
&copy; 2025-2026 Super Revive. All rights reserved. &copy; 2025 Super Revive. All rights reserved.
</p> </p>
<div <div
class="text-xs leading-5 text-blue-50/80 space-y-1" class="flex flex-col lg:flex-row gap-8 lg:gap-12 lg:justify-between"
> >
<p class="mt-2"> <!-- Left Column - Spectrum Disclosure -->
This website is not operated by Spectrum. <div
</p> class="text-xs leading-5 text-blue-50/80 space-y-1 flex-1"
<p> >
Spectrum websites are subject to the Spectrum <p>Indiana C.P.D. Reg. No. 2023-0650298</p>
Privacy Policy available at www.spectrum.com <p class="mt-2">
</p> This website is not operated by Spectrum.
<p class="mt-2"> </p>
The name Spectrum and the pathways logo are <p>
trademarks of Spectrum. Spectrum websites are subject to the
</p> Spectrum Privacy Policy available at
<p> <a href="https://www.spectrum.com">
Innovative Business Solutions is an authorized Spectrum's website
sales agent of Spectrum. </a>
</p> </p>
<p class="mt-2">
The name Spectrum and the pathways logo are
trademarks of Spectrum.
</p>
<p>
ISG is an authorized sales agent of
Spectrum.
</p>
</div>
<!-- Right Column - IBS Information -->
<div
class="text-xs leading-5 text-blue-50/80 space-y-3 flex-1 lg:text-right lg:items-end lg:flex lg:flex-col"
>
<img
src="/ibs.png"
alt="Innovative Business Solutions"
class="h-12 w-auto object-contain lg:ml-auto"
/>
<p>
Innovative Business Solutions is an
authorized retailer of Spectrum and can be
contacted at
<a
href="https://www.innovative-business.net/"
target="_blank"
rel="noopener noreferrer"
class="text-blue-300 hover:text-blue-200 underline"
>
https://www.innovative-business.net/
</a>
</p>
</div>
</div> </div>
</div> </div>
</div> </div>