generated from remix-run/indie-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f041bc9
commit 5c7907e
Showing
5 changed files
with
106 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import GoTriangle from "./gotriangle-logo.png"; | ||
|
||
export const GoTriangleLogo = ({ height }: { height: number }) => ( | ||
<img src={GoTriangle} style={{ height }} /> | ||
<img src={GoTriangle} style={{ height }} alt="GoTriangle Logo" /> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,89 @@ | ||
import { | ||
AtSign, | ||
BusFront, | ||
GithubIcon, | ||
LinkedinIcon, | ||
Map, | ||
RecycleIcon, | ||
} from "lucide-react"; | ||
|
||
export default function RootIndex() { | ||
return <div>This is the index</div>; | ||
return ( | ||
<div> | ||
<div className="header w-full h-[700px] flex flex-col justify-end"> | ||
<div className="py-24 flex flex-col gap-6 text-white bg-gray-500/50"> | ||
<div className="w-5/6 mx-auto flex flex-col gap-6"> | ||
<h1 className="text-5xl font-bold"> | ||
Welcome to Simple Transit Site | ||
</h1> | ||
<h2 className="text-2xl font-medium"> | ||
A simple way to share transit agencies route schedule information | ||
</h2> | ||
<p> | ||
This website is built on the idea that Transit agencies all use | ||
the{" "} | ||
<a className="link" href="https://gtfs.org/schedule/"> | ||
GTFS specification | ||
</a> | ||
. This website is auto generated on a schedule maps and tables | ||
automatically to keep your website up to date.{" "} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="about" className="w-2/3 mx-auto flex flex-col gap-20 py-20"> | ||
<h2 className="text-4xl text-center font-medium">About</h2> | ||
<div className="flex gap-6 items-center"> | ||
<RecycleIcon size={100} /> | ||
<div className="flex flex-col w-2/3"> | ||
<h3 className="text-xl font-medium">Updates automatically</h3> | ||
<p> | ||
Your schedules never stop changing and Simple Transit Site keeps | ||
up with your pace by using your existing published schedule feed | ||
to keep your website updated. | ||
</p> | ||
</div> | ||
</div> | ||
<div className="flex gap-6 items-center"> | ||
<BusFront size={100} /> | ||
<div className="flex flex-col w-2/3"> | ||
<h3 className="text-xl font-medium">Uses the GTFS standard</h3> | ||
<p> | ||
The GTFS standard is used worldwide and this website can be | ||
updated to work with any transit agency that has one. | ||
</p> | ||
</div> | ||
</div> | ||
<div className="flex gap-6 items-center"> | ||
<Map size={100} /> | ||
<div className="flex flex-col w-2/3"> | ||
<h3 className="text-xl font-medium">Maps and Schedules</h3> | ||
<p> | ||
Each route page has up to date maps and time table schedules for a | ||
great experience for you riders. | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div id="contact" className="w-2/3 mx-auto flex flex-col gap-10 py-20"> | ||
<h2 className="text-4xl text-center font-medium">Contact</h2> | ||
<p> | ||
Want to get your own Simple Transit Site? You can find this project | ||
open on Github. If you need some help or if you have a special project | ||
that you want to work on reach out to Walter. | ||
</p> | ||
<div className="flex gap-6 mx-auto"> | ||
<a href="https://www.linkedin.com/in/walter-k-jenkins/"> | ||
<LinkedinIcon size={30} className="hover:text-blue-500" /> | ||
</a> | ||
<a href="https://github.com/AvidDabbler"> | ||
<GithubIcon size={30} className="hover:text-blue-500" /> | ||
</a> | ||
<a href="mailto:[email protected]"> | ||
<AtSign size={30} className="hover:text-blue-500" /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.