Homepage first runthrough complete

This commit is contained in:
Jason Jordan
2025-07-02 16:39:16 -04:00
parent 129af6b414
commit 633b2a997a
12 changed files with 337 additions and 248 deletions
+36 -28
View File
@@ -1,7 +1,4 @@
import Section1 from '../components/Section1';
import Section1Invert from '../components/Section1Invert';
import Section1Light from '../components/Section1Light';
import Section1InvertLight from '../components/Section1InvertLight';
import InfoCard from '../components/InfoCard';
export default function Home() {
return (
@@ -11,43 +8,51 @@ export default function Home() {
Healthcare that's truly affordable
</div>
</div>
<div>
<div className='bg-britton-medium rounded-3xl'>
<Section1
<InfoCard
title="Self-Funded Plans"
imageUrl="/images/SelfFundedDrSquare.png"
imageUrl="/images/placeHolder.png"
sectionBgColor="bg-britton-medium"
cardBGColor="bg-britton-neutral"
bodyTextColor="text-britton-dark"
>
Self-funding gives you the flexibility to design a plan that is best suited to meet your company's needs. And unlike traditional insurance plans that charge a fixed annual rate for claims, self-funded plans are billed monthly, and only for the services used. This saves you from the extra cost of paying for something your company might not use and lets you continuously evaluate your companys plan, maximizing flexibility and mitigating risk to your company's bottom line.
</Section1>
</InfoCard>
</div>
<Section1Invert
<InfoCard
title="Health & Risk Management"
imageUrl="/images/SelfFundedDrSquare.png"
imageUrl="/images/placeHolder.png"
sectionBgColor="bg-britton-dark"
cardBGColor="bg-britton-medium"
bodyTextColor="text-britton-light"
invert
>
While self-funding protects you from paying higher month-to-month premiums for unutilized services, because self-funding bills per-claim, it does leave you susceptible to a catastrophic claim. To protect you against having to cover an excessive amount due to a catastrophic claim, self-funded plans give you the option to purchase stop-loss insurance.
</Section1Invert>
Traditional insurance plans require a lot of upfront costs for coverage that you and your employees may never use. Your insurance provider will collect your monthly premium based on the number of enrolled employees, and your premium only changes if you add or remove enrolled employees.
<br />
While there are still fixed costs with self-funded plans, such as administrative fees, stop-loss premiums and any other set fees charged per employee, your employee premiums are billed on a per-claim basis.
</InfoCard>
<div className='bg-britton-neutral rounded-3xl'>
<Section1Light
<InfoCard
title="Regulatory Compliance"
imageUrl="/images/SelfFundedDrSquare.png"
imageUrl="/images/placeHolder.png"
sectionBgColor="bg-britton-neutral"
cardBGColor="bg-britton-dark"
bodyTextColor="text-britton-light"
>
At Britton Benefit Services, LLC we are leading the third-party benefits industry by working hard to make employee benefits more affordable for you and your employees. As a third-party administrator, we negotiate with leading PPOs and other organizations to help you find the best program for your employees without sacrificing the bottom line. This creates a major cost savings that you can pass on to your employees.
</Section1Light>
</InfoCard>
</div>
<Section1InvertLight
<InfoCard
title="Benefit Access & Online Support"
imageUrl="/images/SelfFundedDrSquare.png"
imageUrl="/images/placeHolder.png"
sectionBgColor="bg-britton-dark"
cardBGColor="bg-britton-light"
bodyTextColor="text-britton-medium"
invert
>
This will all be new text talking about our login pages and other online support.
<br />
<br />
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut ac gravida massa. Morbi et posuere ligula. Cras ultrices luctus tincidunt. Nam arcu orci, porttitor sit amet dui vel, egestas consectetur eros. Maecenas tempus commodo lorem ac aliquam. Nunc mattis nisl non tortor semper fermentum. Interdum et malesuada fames ac ante ipsum primis in faucibus.
</Section1InvertLight>
We offer a wide range of online services to help streamline and automate the benefit process for you and your employees. This means easier access to the benefit information you need and faster action on individual claims. By logging in to any of the services we provide, you can look up in-network providers through our list of PPOs, file insurance claims and review a claim's status, research which type of plan is best for you, and control your health care costs by selecting a PPO that's actively competing for your business.
</InfoCard>
@@ -57,11 +62,14 @@ export default function Home() {
<div className="flex w-full h-70 justify-between items-center pt-30">
{/* <div className="flex w-full h-70 justify-between items-center pt-30">
<div className="bg-britton-neutral h-full w-3/12 rounded-3xl"></div>
<div className="bg-britton-medium h-full w-3/12 rounded-3xl"></div>
<div className="bg-britton-light h-full w-3/12 rounded-3xl"></div>
</div>
</div> */}
</div>
</>
);