homepage/landing pages 'done', dashboard started

This commit is contained in:
Jason Jordan
2025-07-16 17:27:22 -04:00
parent f16a4fd49a
commit 2bd7ce94fe
22 changed files with 866 additions and 220 deletions
+28
View File
@@ -0,0 +1,28 @@
import LandingPage from '../../components/LandingPage';
import InlineLink from "../../components/InlineLink";
// import TextImage50 from "../../components/TextImage50-50";
export default function Members() {
return (
<div className="w-full">
<LandingPage
headerText='Members'
headerColor="text-atmosphere"
underlineColor="bg-copper"
stripeColor="bg-bluetang"
imageUrl="/images/members-stock.jpg"
>
At Britton Benefit Services, LLC we're making employee benefits more affordable. In addition to the cost savings you receive when your employer chooses Britton Benefit Services, LLC we also make sure the important information you need is at your fingertips.
<br />
<br />
That's why our member portal offers you 24/7 access to things like in-network provider lists, claim forms and prescription medication information. Select from any of the links below to get access to the benefit information and forms you need to file a claim, search for a provider or learn more about your benefits plan.
<br />
<br />
At Britton Benefit Services, LLC we're making employee benefits more affordable. In addition to the cost savings you receive when your employer chooses Britton Benefit Services, LLC we also make sure the important information you need is at your fingertips.
<br />
<br />
That's why our member portal offers you 24/7 access to things like in-network provider lists, claim forms and prescription medication information. Select from any of the links below to get access to the benefit information and forms you need to file a claim, search for a provider or learn more about your benefits plan.
</LandingPage>
</div>
)
}