2025-07-02 16:39:16 -04:00
import InfoCard from '../components/InfoCard' ;
2025-07-03 13:35:22 -04:00
import Tagline from "../components/Tagline" ;
2025-07-09 15:25:28 -04:00
import InlineLink from "../components/InlineLink" ;
2025-07-29 17:41:13 -04:00
import Navbar from '@/components/Navbar' ;
import Footer from '@/components/Footer' ;
2025-06-30 15:54:10 -04:00
export default function Home() {
return (
<>
2025-07-30 16:31:41 -04:00
< Navbar collapseHeight = { 730 } />
2025-07-03 13:35:22 -04:00
< Tagline
2025-07-16 17:27:22 -04:00
bgColor = "bg-bluemana"
textColor = "text-deepcove"
2025-07-03 13:35:22 -04:00
textTop = "Healthcare that's"
textBottom = "truly affordable"
/>
2025-07-23 13:57:45 -04:00
< div className = "pt-4" >
< InfoCard
title = "Members"
imageUrl = "/images/members-stock.jpg"
>
Aenean et nulla nec dolor finibus dictum . Vestibulum ultrices aliquam sapien . Cras at nunc tincidunt , tristique metus nec , auctor ipsum . Mauris maximus justo sit amet lorem semper , ac accumsan turpis tempor . Proin id maximus libero . Fusce ac elementum risus . Suspendisse tincidunt rutrum eros eu facilisis . Nulla efficitur ac tortor ut elementum . Etiam sed elementum urna , a rhoncus lacus . Pellentesque vitae eros diam . Suspendisse sem purus , dictum id fringilla vel , malesuada sed odio . Nunc ut odio id purus tempus placerat quis vel ex . Maecenas tincidunt ante metus , eu interdum felis vehicula eu . Nulla pellentesque mi id velit vulputate tristique . Donec consectetur tempus interdum . Sed tellus lectus , ornare at sem vitae , tempor lobortis eros . Nam at eleifend eros , quis porta dolor . Aliquam mollis sapien vitae ex eleifend commodo . Integer vel pellentesque eros . Morbi tincidunt ipsum id dolor consectetur mollis ut vitae leo . Proin iaculis vel .
</ InfoCard >
</ div >
2025-07-16 17:27:22 -04:00
< div className = 'bg-atmosphere rounded-3xl' >
2025-07-02 16:39:16 -04:00
< InfoCard
2025-07-09 15:25:28 -04:00
title = "Employers"
imageUrl = '/images/employers-stock.jpg'
2025-07-03 13:35:22 -04:00
learnMoreUrl = "https://github.com/orgs/Britton-Benefits/repositories"
2025-07-08 14:57:06 -04:00
invert
2025-06-30 15:54:10 -04:00
>
2025-07-16 17:27:22 -04:00
Lorem ipsum dolor sit amet , consectetur adipiscing elit . Quisque vel elit pellentesque , pulvinar ipsum et , rutrum neque . Donec ullamcorper suscipit laoreet . Sed posuere placerat vestibulum . Nulla ornare tristique felis sit amet maximus . Aliquam convallis mi et turpis venenatis iaculis . Aliquam erat volutpat . Suspendisse felis elit , semper efficitur blandit ut , eleifend at est . Vestibulum vulputate volutpat mattis . Suspendisse bibendum , dolor in rutrum commodo , nulla augue feugiat nibh , vestibulum imperdiet turpis massa consequat risus . Fusce fringilla , libero nec efficitur eleifend , ligula elit commodo lacus , sed facilisis orci ligula quis felis . Praesent malesuada , velit consequat ultrices ultricies , elit sapien pretium sapien , at consectetur nunc nisi quis est . Ut interdum urna non ligula cursus ultrices . Class aptent taciti sociosqu ad litora torquent per conubia nostra , per inceptos himenaeos . Ut laoreet vehicula felis , in tincidunt ante porta et .
2025-07-02 16:39:16 -04:00
</ InfoCard >
2025-06-30 15:54:10 -04:00
</ div >
2025-07-02 16:39:16 -04:00
< InfoCard
2025-07-09 15:25:28 -04:00
title = "Providers"
imageUrl = "/images/providers-stock.jpg"
2025-06-30 15:54:10 -04:00
>
2025-07-09 15:25:28 -04:00
We offer a wide range of < InlineLink > online services </ InlineLink > 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 < InlineLink > in - network providers </ InlineLink > 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 .
2025-07-02 16:39:16 -04:00
</ InfoCard >
2025-07-16 17:27:22 -04:00
< div className = 'bg-platinum rounded-3xl' >
2025-07-02 16:39:16 -04:00
< InfoCard
2025-07-09 15:25:28 -04:00
title = "Brokers"
imageUrl = "/images/brokers-stock.jpg"
2025-07-08 14:57:06 -04:00
invert
2025-06-30 15:54:10 -04:00
>
2025-07-09 15:25:28 -04:00
At Britton Benefit Services , LLC we are leading the third - party benefits industry by working hard to make < InlineLink > employee benefits </ InlineLink > 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 .
2025-07-02 16:39:16 -04:00
</ InfoCard >
2025-06-30 15:54:10 -04:00
</ div >
2025-07-29 17:41:13 -04:00
< Footer />
2025-06-30 15:54:10 -04:00
</>
);
}