diff --git a/src/app/(informational)/members/page.tsx b/src/app/(informational)/members/page.tsx
index eaf938c..c767c93 100644
--- a/src/app/(informational)/members/page.tsx
+++ b/src/app/(informational)/members/page.tsx
@@ -2,12 +2,13 @@ import { Schibsted_Grotesk } from 'next/font/google'
import classnames from 'classnames';
import InlineLink from "@/components/InlineLink";
import QuickAccessLinks, { QuickLink } from '@/components/QuickAccessLinks';
+import LandingPageHeader from '@/components/LandingPageHeader';
const font = Schibsted_Grotesk({ subsets: ['latin'] })
const quickLinks: QuickLink[] = [
{
- display: "Login/Registration",
+ display: "Member Login/Registration",
url: "/"
},
{
@@ -27,23 +28,31 @@ const quickLinks: QuickLink[] = [
export default function Members() {
return (
- <>
-
- 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.
-
-
- 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.
-
-
- 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.
-
-
- 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.
+
+
+
+
+
+ Member Tagline will go here when we come up with the wording
+
+
+
+ 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.
+
+
+ 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.
+
+
+ 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.
+
+
+ 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.
+
+
- >
+
)
}
\ No newline at end of file
diff --git a/src/app/(informational)/providers/page.tsx b/src/app/(informational)/providers/page.tsx
new file mode 100644
index 0000000..1f1f696
--- /dev/null
+++ b/src/app/(informational)/providers/page.tsx
@@ -0,0 +1,49 @@
+import { Schibsted_Grotesk } from 'next/font/google'
+import classnames from 'classnames';
+import InlineLink from "@/components/InlineLink";
+import QuickAccessLinks, { QuickLink } from '@/components/QuickAccessLinks';
+import LandingPageHeader from '@/components/LandingPageHeader';
+
+const font = Schibsted_Grotesk({ subsets: ['latin'] })
+
+const quickLinks: QuickLink[] = [
+ {
+ display: "Member Login/Registration",
+ url: "/"
+ },
+ {
+ display: "Link to Thing 1",
+ url: "/"
+ },
+ {
+ display: "Link to Thing 2",
+ url: "/"
+ },
+ {
+ display: "Link to another Thing",
+ url: "/"
+ }
+]
+
+
+export default function Providers() {
+ return (
+
+
+
+
+
+ Easy Access to HIPAA Compliant Patient Information and Much More
+
+
+
+ You know that as a provider, you have a responsibility to your patients to respond promptly and accurately. At Britton Benefit Services, LLC it’s our goal to provide you with the prompt response to your inquiry and easy access to the information you need to care for your patients. In addition to 24/7 online support and access to HIPAA compliant patient information, you can find the information you need to verify eligibility, confirm benefits and check claim statuses. Simply select the navigation above to access the forms and information you need.
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/app/dashboard/layout.tsx b/src/app/dashboard/layout.tsx
index fee9a5f..014102e 100644
--- a/src/app/dashboard/layout.tsx
+++ b/src/app/dashboard/layout.tsx
@@ -6,7 +6,6 @@ import Script from 'next/script';
import AccountDropdown from '../../components/AccountDropdown';
import SideNav from "@/components/SideNav";
-import DashboardHeader from "@/components/DashboardHeader";
import Image from 'next/image';
import classnames from 'classnames';
@@ -34,12 +33,12 @@ export default async function DashboardLayout({ children }: { children: React.Re