Skip to content

Commit

Permalink
adding connections to github repos in projects' content routes +fixes…
Browse files Browse the repository at this point in the history
… +Change from bookings to accommodations...
  • Loading branch information
filipc30 committed Feb 3, 2024
1 parent 196f8d8 commit 3f6ae8c
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
##### Description: Wochlife App serves 2 purposes:
1. as Filip Čablík's personal portfolio and work overview
2. creating awareness about the brand's purpose
##### #Stack: Remix.run / TypeScript / SQLite / Fly.io / prisma / GitHub Actions / Resend / and more..
##### #Stack:
![Remix](https://img.shields.io/badge/remix-%23000.svg?style=for-the-badge&logo=remix&logoColor=white)
![TypeScript](https://img.shields.io/badge/typescript-%23007ACC.svg?style=for-the-badge&logo=typescript&logoColor=white)
![Prisma](https://img.shields.io/badge/Prisma-3982CE?style=for-the-badge&logo=Prisma&logoColor=white)
Expand Down
4 changes: 2 additions & 2 deletions app/routes/_base+/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ export default function Index() {
innerBoxClass={lightGreenGradient}
/>
</Link>
<Link to="projects/booking-systems">
<Link to="projects/accommodations-apps">
<ProjectsContentBox
name={'Webs /w Booking Systems'}
name={'Webs /w Accommodations Apps'}
description={'since 2022'}
iconName="desktop"
innerBoxClass={lightGreenGradient}
Expand Down
28 changes: 28 additions & 0 deletions app/routes/projects+/accommodations-apps.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { Button } from '#app/components/ui/button.tsx'

export default function PortfolioFreelance() {
return (
<div>
<h3 className="mb-6 text-xl font-semibold capitalize md:text-2xl">
Accommodations Management Applications
</h3>

<div className="custom-content-box-height">
{/* overflow-y-scroll */}
{/* Accommodations Apps content */}
<div className="mb-6">
<p className="mb-4">Discover more from the GitHub repo:</p>
<a
href="https://github.com/fcablik/wochlife-accomodations"
target="_blank"
rel="noreferrer"
>
<Button variant="highlight-secondary">
Wochlife Accommodations
</Button>
</a>
</div>
</div>
</div>
)
}
18 changes: 0 additions & 18 deletions app/routes/projects+/booking-systems.tsx

This file was deleted.

19 changes: 14 additions & 5 deletions app/routes/projects+/online-stores.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,26 @@
import { Button } from '#app/components/ui/button.tsx'

export default function PortfolioFreelance() {
return (
<div>
<h3 className="mb-6 text-xl font-semibold capitalize md:text-2xl">
E-commerce
E-commerce (Online Stores)
</h3>

<div className="custom-content-box-height">
{/* overflow-y-scroll */}
{/* online stores content */}

{/* Accommodations Apps content */}
<div className="mb-6">
<h5 className="mb-2 text-lg md:text-xl font-semibold capitalize">..Thanks for patience.</h5>
<div>Online Stores content is getting ready..</div>
<p className="mb-4">Discover more from the GitHub repo:</p>
<a
href="https://github.com/fcablik/worldofchaos.com-shop-reactjs_app"
target="_blank"
rel="noreferrer"
>
<Button variant="highlight-secondary">
World Of Chaos ReactJS Shop App
</Button>
</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/routes/projects+/web-dev.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export default function PortfolioFreelance() {
custom apps
</NavLink>
<NavLink
to="booking-systems"
to="accommodations-apps"
className={({ isActive }) => (isActive ? 'text-highlight' : '')}
>
custom apps
Expand Down
4 changes: 2 additions & 2 deletions app/routes/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ function RouteSelector({
/>
)}
</NavLink>
<NavLink to="booking-systems" onClick={handleClick}>
<NavLink to="accommodations-apps" onClick={handleClick}>
{({ isActive }) => (
<ProjectsContentBox
boxClass={isActive ? 'bg-highlight-dark' : ''}
name={'Booking Systems'}
name={'Accommodations Apps'}
description={'since 2022'}
iconName="desktop"
innerBoxClass={cn(
Expand Down

0 comments on commit 3f6ae8c

Please sign in to comment.