Files
next-web/src/app/(informational)/members/page.tsx
T

49 lines
2.1 KiB
TypeScript
Raw Normal View History

2025-07-29 17:41:13 -04:00
import { Schibsted_Grotesk } from 'next/font/google'
import classnames from 'classnames';
import InlineLink from "@/components/InlineLink";
import QuickAccessLinks, { QuickLink } from '@/components/QuickAccessLinks';
const font = Schibsted_Grotesk({ subsets: ['latin'] })
const quickLinks: QuickLink[] = [
{
display: "Login/Registration",
url: "/"
},
{
display: "Link to Thing 1",
url: "/"
},
{
display: "Link to Thing 2",
url: "/"
},
{
display: "Link to another Thing",
url: "/"
}
]
export default function Members() {
return (
2025-07-29 17:41:13 -04:00
<>
<QuickAccessLinks
imageUrl="/images/members-stock.jpg"
quickLinks={quickLinks}
/>
<div className={classnames("w-full text-2xl px-10", font.className)}>
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 />
2025-07-29 17:41:13 -04:00
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.
</div>
</>
)
}