Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
e9d5313
Add experimental configuration for optimizing Chakra UI package imports
BorDevTech Jan 15, 2026
4b1b1ce
Add icon registry and icon component for improved icon management
BorDevTech Jan 15, 2026
5234996
Add reusable IconButton component for enhanced link management
BorDevTech Jan 15, 2026
78d7a08
Refactor FeatureCard, ServiceCard, and SupportCard components to use …
BorDevTech Jan 15, 2026
3854568
Refactor FaqItem and services to use IconName for icon prop, enhancin…
BorDevTech Jan 15, 2026
60798eb
Refactor Services, Home, and Footer components to utilize IconName fo…
BorDevTech Jan 15, 2026
49f4b44
Add dynamic state resource route and resources JSON for search functi…
BorDevTech Jan 15, 2026
66bda47
Refactor Contact page to enhance social links rendering and improve l…
BorDevTech Jan 15, 2026
0800a57
Refactor Contact page and form for improved layout and user experienc…
BorDevTech Jan 19, 2026
6abaa23
Refactor ContactForm component to integrate Chakra UI elements; enhan…
BorDevTech Jan 19, 2026
2ad87bf
Add blog and resource JSON files; implement new Search component with…
BorDevTech Jan 20, 2026
cc33567
re-address About Us page and update navbar links for improved navigat…
BorDevTech Jan 20, 2026
4181406
Add Search icon to icon registry and index for improved icon availabi…
BorDevTech Jan 20, 2026
dedc010
Remove commented-out code blocks for cleaner Home component structure
BorDevTech Jan 20, 2026
93206ef
Initial plan
Copilot Jan 20, 2026
a323949
Merge pull request #43 from codingUnited/copilot/sub-pr-42
BorDevTech Jan 20, 2026
2b78bf9
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
769a986
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
ad8fcbc
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
6018d93
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
5756e50
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
c42f1c8
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
82fe4d9
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
41235f6
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
ece20bc
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
d15cd94
Apply suggestion from @Copilot
BorDevTech Jan 20, 2026
d119dac
re-address icon registry and update icon component for improved icon …
BorDevTech Jan 20, 2026
4dc114d
Refactor Contact page to improve structure; replace Image component w…
BorDevTech Jan 20, 2026
7e6f4f7
Refactor resource management: restructure mock data into JSON format,…
BorDevTech Jan 20, 2026
e4f90ac
Refactor Contact page: clean up main tag formatting, remove unused im…
BorDevTech Jan 20, 2026
a5ee55a
Remove unused imports from empowerment and get-involved components fo…
BorDevTech Jan 20, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion app/(API Routes)/api/blog/search/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export function GET(request: Request) {

const dataFile = path.join(
process.cwd(),
"src",
"app",
"(API Routes)",
"api",
Expand Down
1 change: 1 addition & 0 deletions app/(API Routes)/api/search/[state]/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Dynamic State resource route
50 changes: 50 additions & 0 deletions app/(API Routes)/api/search/resources.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
[
{
"id": 1,
"url": "https://findtreatment.gov/",
"description": "Find treatment facilities in the United States or U.S. Territories for substance abuse/addiction and/or mental health problems."
},
{
"id": 2,
"url": "www.careeronestop.org/",
"description": "Help finding second chance employers by location"
},
{
"id": 3,
"url": "www.hudexchange.info/",
"description": "Housing and homeless shelters by location"
},
{
"id": 4,
"url": "www.hirefelons.org/",
"description": "Hiring resources for felons"
},
{
"id": 5,
"url": "https://www.spl.org/programs-and-services/civics-and-social-services/resources-for-the-formerly-incarcerated",
"description": "Information about resources available to the formerly incarcerated"
},
{
"id": 6,
"url": "www.goodwill.org/",
"description": "Goodwill has re entry jobs and training services"
},
{ "id": 7, "url": "www.salvationarmyusa.org/", "description": "Resources" },
{ "id": 8, "url": "www.foodfinder.us/", "description": "Resources" },
{
"id": 9,
"url": "https://georeentryconnect.com/",
"description": "General resources by state"
},
{
"id": 10,
"url": "www.honestjobs.com/",
"description": "Job seekers center for community transitions"
},
{
"id": 11,
"url": "https://centerforcommunitytransitions.org/",
"description": "Center for Community Transitions"
},
{ "id": 12, "url": "www.indeed.com/", "description": "Job search" }
]
8 changes: 8 additions & 0 deletions app/(API Routes)/api/search/route.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Catch all search route
// Import the resources file
/*
UPDATE resource file via vercel blob storage for source of truth
USING os path to dynamically read files from vercel blob storage
*/
//
//
8 changes: 5 additions & 3 deletions app/(Pages)/about-us/page.tsx → app/(Pages)/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client"
import NextImage from 'next/image';
import TeamMemberCard from '../../../components/about/team-member-card';
import { GemIcon } from '@/components/ui/icons';
// import { GemIcon } from '@/components/ui/icons';
import { executiveBoard, teamMembers } from '../../../data/team';
import {
Container, Box, Text, AbsoluteCenter, VStack, HStack, Heading,
Expand All @@ -10,6 +10,7 @@ import {
import { poppins } from '../../../components/ui/fonts';
import NextLink from 'next/link';
import checkDeviceSize from '../../../components/ui/breakpoints';
import { Icon } from '@/components/ui/icons/icon';

export default function AboutUs() {

Expand Down Expand Up @@ -58,7 +59,8 @@ export default function AboutUs() {
<Container as={'main'} maxW={'7xl'} h={"100%"}>
<HStack as={"section"}>
<article>
<GemIcon />
<Icon name={"Gem"}/>
{/* <GemIcon /> */}
<Box>
<Heading as="h3">Vision</Heading>
<Text>
Expand All @@ -70,7 +72,7 @@ export default function AboutUs() {
</article>

<article>
<GemIcon />
<Icon name={"Gem"}/>
<Box>
<Heading as="h3">Mission</Heading>
<Text>
Expand Down
Loading
Loading