├── README.md ├── src ├── app │ ├── robots.txt │ ├── icon.png │ ├── favicon.ico │ ├── opengraph-image.png │ ├── (main) │ │ ├── (blue) │ │ │ ├── blogs │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── about-us │ │ │ │ ├── page.tsx │ │ │ │ └── _components │ │ │ │ │ ├── book.tsx │ │ │ │ │ ├── guidance.tsx │ │ │ │ │ ├── vision.tsx │ │ │ │ │ └── hero.tsx │ │ │ ├── our-process │ │ │ │ ├── _components │ │ │ │ │ ├── process │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── process-carousel.tsx │ │ │ │ │ ├── center-section.tsx │ │ │ │ │ ├── hero.tsx │ │ │ │ │ └── extra-copy.tsx │ │ │ │ └── page.tsx │ │ │ └── [page] │ │ │ │ └── page.tsx │ │ ├── (purple) │ │ │ ├── layout.tsx │ │ │ ├── blogs │ │ │ │ └── [slug] │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── _components │ │ │ │ │ └── hero.tsx │ │ │ │ │ └── page.tsx │ │ │ ├── _components │ │ │ │ ├── calculate-rates.tsx │ │ │ │ ├── copy-section.tsx │ │ │ │ ├── features.tsx │ │ │ │ ├── hero.tsx │ │ │ │ └── health-care-freedom.tsx │ │ │ └── page.tsx │ │ └── layout.tsx │ ├── api │ │ ├── disable-draft │ │ │ └── route.ts │ │ └── draft │ │ │ └── route.ts │ ├── (sanity) │ │ ├── layout.tsx │ │ └── studio │ │ │ └── [[...tool]] │ │ │ └── page.tsx │ ├── manifest.ts │ └── sitemap.ts ├── components │ ├── animation │ │ ├── index.ts │ │ ├── lottie-player.tsx │ │ └── animation.tsx │ ├── forms │ │ ├── contact-form │ │ │ ├── index.ts │ │ │ ├── schema.ts │ │ │ ├── contact-form.action.ts │ │ │ └── contact-form.tsx │ │ └── newsletter-form │ │ │ ├── index.ts │ │ │ ├── schema.ts │ │ │ ├── newsletter-form.action.ts │ │ │ └── newsletter-form.tsx │ ├── logo │ │ ├── index.ts │ │ ├── animated-logo.tsx │ │ └── logo.tsx │ ├── automatic-visual-editing.tsx │ ├── icons │ │ ├── angled-rectangle.tsx │ │ ├── shield.tsx │ │ ├── phone.tsx │ │ ├── mail.tsx │ │ ├── home.tsx │ │ ├── money.tsx │ │ └── calendly.tsx │ ├── ui │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── textarea.tsx │ │ ├── button.tsx │ │ ├── accordion.tsx │ │ └── form.tsx │ ├── prose.tsx │ ├── breadcrumbs.tsx │ ├── layout │ │ ├── nav.tsx │ │ ├── nav-wrapper.tsx │ │ ├── reach-out.tsx │ │ └── footer.tsx │ ├── provider.tsx │ ├── background.tsx │ ├── ui-new │ │ └── button.tsx │ ├── icons.tsx │ └── choose.tsx ├── sanity │ ├── schema.ts │ ├── lib │ │ ├── token.ts │ │ ├── image.ts │ │ └── client.ts │ ├── env.ts │ └── schemaTypes │ │ ├── blog.ts │ │ └── policy.ts ├── lib │ ├── utils.ts │ ├── constants.ts │ ├── pardot.ts │ ├── use-action-state.ts │ └── data.ts └── styles │ ├── index.ts │ └── globals.css ├── .eslintrc.json ├── public ├── logo.png ├── logo-blue.png └── logo-small-blue.png ├── .husky └── pre-commit ├── postcss.config.mjs ├── next-env.d.ts ├── prettier.config.js ├── lint-staged.config.js ├── sanity.cli.ts ├── components.json ├── next.config.mjs ├── .gitignore ├── env.txt ├── .env ├── tsconfig.json ├── package.json ├── sanity.config.ts ├── tailwind.config.ts └── sanity.types.ts /README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/robots.txt: -------------------------------------------------------------------------------- 1 | User-Agent: * 2 | Allow: * -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /src/components/animation/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./animation"; 2 | -------------------------------------------------------------------------------- /src/components/forms/contact-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./contact-form"; 2 | -------------------------------------------------------------------------------- /src/components/forms/newsletter-form/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./newsletter-form"; 2 | -------------------------------------------------------------------------------- /src/components/logo/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./logo"; 2 | export * from "./animated-logo"; 3 | -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arbab-Mustafa/app-client-new/HEAD/public/logo.png -------------------------------------------------------------------------------- /src/app/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arbab-Mustafa/app-client-new/HEAD/src/app/icon.png -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | bunx lint-staged 5 | -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arbab-Mustafa/app-client-new/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /public/logo-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arbab-Mustafa/app-client-new/HEAD/public/logo-blue.png -------------------------------------------------------------------------------- /public/logo-small-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arbab-Mustafa/app-client-new/HEAD/public/logo-small-blue.png -------------------------------------------------------------------------------- /src/app/opengraph-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arbab-Mustafa/app-client-new/HEAD/src/app/opengraph-image.png -------------------------------------------------------------------------------- /src/app/(main)/(blue)/blogs/page.tsx: -------------------------------------------------------------------------------- 1 | import { notFound } from "next/navigation"; 2 | 3 | export default function Page() { 4 | notFound(); 5 | return
20 | Find out what investment you need to make! 21 |
22 | 30 |25 | {description} 26 |
27 |30 | Trusted partner for all your Individual Coverage Health Reimbursement 31 | Arrangement (ICHRA) needs in Colorado and beyond! With our central 32 | office located in the Denver metro area, we are conveniently situated 33 | to support businesses across Colorado for in-person and virtual 34 | enrollments. 35 |
36 |18 | Trusted partner for all your Individual Coverage Health Reimbursement 19 | Arrangement (ICHRA) needs in Colorado and beyond! With our central 20 | office located in the Denver metro area, we are conveniently situated 21 | to support businesses across Colorado for in-person and virtual 22 | enrollments. 23 |
24 |68 | {children} 69 |
70 | {icon} 71 |24 | We invite you to reach out to our dedicated team today, and 25 | let's work together to unravel any questions or concerns you 26 | may have. We are here to provide you with clear and reliable 27 | answers, just a message away. 28 |
29 |44 | Be Informed 45 |
46 | 51 | 52 |47 | Sign up for our newsletter to stay updated 48 |
49 | 96 | 97 |30 | Here's why ICHRAs are a game-changer for businesses like yours 31 |
32 |{title}
77 | //{subText}
78 | //{title}
91 |{activeStep.body}
50 |89 | Empowering Businesses with the future of health care. 90 |
91 |92 | 3012 S Broadway St, Englewood, CO 80113 93 |
94 |47 | We are dedicated to discovering the ideal ICHRA plan for both you and 48 | your employees. 49 |
50 |91 | {children} 92 |
93 |0{number}
*/} 106 |{bgText}
107 |{children}
113 |166 | {body} 167 |
168 | ); 169 | }); 170 | FormMessage.displayName = "FormMessage"; 171 | 172 | export { 173 | useFormField, 174 | Form, 175 | FormItem, 176 | FormLabel, 177 | FormControl, 178 | FormDescription, 179 | FormMessage, 180 | FormField, 181 | }; 182 | -------------------------------------------------------------------------------- /src/lib/data.ts: -------------------------------------------------------------------------------- 1 | export const landingChooseCards = [ 2 | { 3 | title: "Cost Control", 4 | text: "Say goodbye to unpredictable costs and hello to stability! With ICHRAs, you can set fixed reimbursement amounts that work for your budget, giving you ultimate control over your expenses.", 5 | tag: "Lots of Savings", 6 | }, 7 | { 8 | title: "Simplified Administration", 9 | text: "Who needs the hassle of being a middle-man? Not you! With ICHRAs, you can kiss goodbye to the headache of managing employee benefits. It's streamlined, efficient, and it's all about making your life easier.", 10 | tag: "Streamline Management", 11 | }, 12 | { 13 | title: "Flexible Offerings", 14 | text: "Every team is unique, right? That's why ICHRAs offer tailored plans to suit different employee groups. Whether it's part-timers, full-timers, or freelancers, everyone gets the coverage they need, no questions asked.", 15 | tag: "Tailored Programs", 16 | }, 17 | { 18 | title: "Tax Savings", 19 | text: "Let's talk savings – because who doesn't love a good deal? With ICHRAs, your health benefits are tax savings, making them a cost-effective solution for both employers and employees alike.", 20 | tag: "Reduce on Taxes", 21 | }, 22 | { 23 | title: "Retention Incentive", 24 | text: "Happy employees = loyal employees. With ICHRAs, you can craft plans that cater to your team's specific needs, showing them just how much you value their well-being and keeping them around for the long haul.", 25 | tag: "Build Loyalty", 26 | }, 27 | { 28 | title: "Increased Choice", 29 | text: "Variety is the spice of life, and ICHRAs serve it up in spades. Say hello to a wide range of health plans to choose from, giving you and your team the freedom to pick what works best.", 30 | tag: "Diverse Health Plans", 31 | }, 32 | ]; 33 | export const servicesChooseCards = [ 34 | { 35 | title: "Cost Control", 36 | text: "Say goodbye to unpredictable costs and hello to stability! With ICHRAs, you can set fixed reimbursement amounts that work for your budget, giving you ultimate control over your expenses.", 37 | tag: "Lots of Savings", 38 | }, 39 | { 40 | title: "Simplified Administration", 41 | text: "Who needs the hassle of being a middle-man? Not you! With ICHRAs, you can kiss goodbye to the headache of managing employee benefits. It's streamlined, efficient, and it's all about making your life easier.", 42 | tag: "Streamline Management", 43 | }, 44 | { 45 | title: "Flexible Offerings", 46 | text: "Every team is unique, right? That's why ICHRAs offer tailored plans to suit different employee groups. Whether it's part-timers, full-timers, or freelancers, everyone gets the coverage they need, no questions asked.", 47 | tag: "Tailored Programs", 48 | }, 49 | { 50 | title: "Tax Savings", 51 | text: "Let's talk savings – because who doesn't love a good deal? With ICHRAs, your health benefits are tax savings, making them a cost-effective solution for both employers and employees alike.", 52 | tag: "Reduce on Taxes", 53 | }, 54 | { 55 | title: "Retention Incentive", 56 | text: "Happy employees = loyal employees. With ICHRAs, you can craft plans that cater to your team's specific needs, showing them just how much you value their well-being and keeping them around for the long haul.", 57 | tag: "Build Loyalty", 58 | }, 59 | { 60 | title: "Increased Choice", 61 | text: "Variety is the spice of life, and ICHRAs serve it up in spades. Say hello to a wide range of health plans to choose from, giving you and your team the freedom to pick what works best.", 62 | tag: "Diverse Health Plans", 63 | }, 64 | ]; 65 | 66 | export const steps = [ 67 | { 68 | title: "Initial Planning", 69 | body: "Let's begin by understanding each other! Our first priority is to grasp your goals, challenges, and budget inside out.Whether you're considering an ICHRA, QSEHRA, or something unique, our aim is to guide you toward the ideal plan that fits seamlessly.", 70 | }, 71 | { 72 | title: "Effortless Enrollment", 73 | body: "Enrolling in a new insurance plan can seem daunting, but we've got you covered every step of the way. From managing payroll intricacies to navigating tax implications, we ensure the enrollment process is as smooth as silk. Whether your team prefers in-person meetings or virtual support, we provide assistance and education so everyone feels confident about their coverage choices long after the transition.", 74 | }, 75 | { 76 | title: "Tailored Assistance", 77 | body: "Your needs are as unique as your business, which is why we offer personalized support that exceeds expectations. Whether you need dental or vision coverage, or connections to trusted carriers nationwide, consider it handled. Rest assured, we continuously explore the latest options available so you can always stay ahead of the curve.", 78 | }, 79 | { 80 | title: "Full Service Support", 81 | body: "When we commit to supporting you, we mean it. From cultivating partnerships with premier carriers to developing a cutting-edge benefits strategy, our goal is to ensure a seamless and streamlined process every step of the way.", 82 | }, 83 | ]; 84 | -------------------------------------------------------------------------------- /src/app/(main)/(blue)/about-us/_components/vision.tsx: -------------------------------------------------------------------------------- 1 | import { ReactNode } from "react"; 2 | 3 | import { cn } from "@/lib/utils"; 4 | 5 | import { commonPadding } from "@/styles"; 6 | 7 | const cards = [ 8 | { 9 | title: "Savings", 10 | text: "Our mission is to empower businesses through ongoing education, enabling them to make well-informed decisions about their employee benefits package.", 11 | }, 12 | { 13 | title: "Exceptional Support", 14 | text: "Helping you navigate the complex world of insurance solutions tailored specifically to your business needs through our personalized process.", 15 | }, 16 | { 17 | title: "Nationwide Accessibility", 18 | text: "Delivering top-notch support and guidance for implementing and managing your ICHRA plan, whether you are based in Colorado or anywhere else in the United States.", 19 | }, 20 | ]; 21 | 22 | export const Vision = () => { 23 | return ( 24 |Our Vision
31 |35 | We believe in providing nothing but the best. With our personalized 36 | approach and meticulous attention to detail we understand and prioritize 37 | your unique needs. 38 |
39 |61 | At ICHRAs.com, we provide personalized, expert-level health 62 | insurance solutions for businesses of all sizes in Colorado. Our 63 | dedicated team with over 50 years of combined expertise ensures 64 | top-quality benefits and cost-effective ICHRA solutions. We empower 65 | businesses through informed decision-making, offering white-glove 66 | service and ongoing education for exceptional support and innovative 67 | solutions. 68 |
69 |70 | Join us for the next generation of health insurance tailored for 71 | businesses of any size. 72 |
73 |74 | Empower your business and champion employee freedom with our 75 | esteemed services. 76 |
77 |114 | {children} 115 |
116 |16 | Our reach extends far beyond the state borders. We proudly offer 17 | nationwide support to clients all over the U.S., making us your go-to 18 | resource no matter where you are located. 19 |
20 |21 | With a network of referral partners spanning all 50 states, we truly 22 | have your back wherever your business takes you. 23 |
24 |25 | Choosing ICHRAS.COM is a no-brainer. Our commitment to excellence, 26 | personalized service, and nationwide accessibility ensures that you 27 | receive top-notch support and guidance for implementing and managing 28 | your ICHRA plan, whether you are based in Colorado or anywhere else in 29 | the United States. 30 |
31 |39 | We are committed to excellence, delivering unparalleled service with 40 | a personalized touch and meticulous attention to detail. Your unique 41 | needs are our priority. 42 |
43 |49 | Why Choose an ICHRA? 50 |
51 |59 | We know you're tired of the same old group plans that just 60 | don't quite fit the bill for your diverse team. Here's why 61 | you should make the switch 62 |
63 |140 | {tag} 141 |
142 |175 | {children} 176 |
177 |51 | Championing Employee Freedom 52 |
53 |79 | ICHRAs are a game-changer for businesses of all sizes. They allow you 80 | to empower your employees to choose the health insurance plan that 81 | best fits their needs and budget, while still receiving valuable 82 | financial support from your company. 83 |
84 |26 | Welcome to Ichras - Where Freedom and Flexibility shape your 27 | healthcare choices 28 |
29 | 38 |