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

View File

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

View File

@@ -77,28 +77,61 @@ const contactLink = getContactLink(page);
<div
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">
&copy; 2025-2026 Super Revive. All rights reserved.
&copy; 2025 Super Revive. All rights reserved.
</p>
<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">
This website is not operated by Spectrum.
</p>
<p>
Spectrum websites are subject to the Spectrum
Privacy Policy available at www.spectrum.com
</p>
<p class="mt-2">
The name Spectrum and the pathways logo are
trademarks of Spectrum.
</p>
<p>
Innovative Business Solutions is an authorized
sales agent of Spectrum.
</p>
<!-- Left Column - Spectrum Disclosure -->
<div
class="text-xs leading-5 text-blue-50/80 space-y-1 flex-1"
>
<p>Indiana C.P.D. Reg. No. 2023-0650298</p>
<p class="mt-2">
This website is not operated by Spectrum.
</p>
<p>
Spectrum websites are subject to the
Spectrum Privacy Policy available at
<a href="https://www.spectrum.com">
Spectrum's website
</a>
</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>