diff --git a/app/images/index.tsx b/app/images/index.tsx index 2da4a03..d5bea97 100644 --- a/app/images/index.tsx +++ b/app/images/index.tsx @@ -1,5 +1,5 @@ import GoTriangle from "./gotriangle-logo.png"; export const GoTriangleLogo = ({ height }: { height: number }) => ( - + GoTriangle Logo ); diff --git a/app/routes/__root._index.tsx b/app/routes/__root._index.tsx index 5737a55..c668103 100644 --- a/app/routes/__root._index.tsx +++ b/app/routes/__root._index.tsx @@ -1,3 +1,89 @@ +import { + AtSign, + BusFront, + GithubIcon, + LinkedinIcon, + Map, + RecycleIcon, +} from "lucide-react"; + export default function RootIndex() { - return
This is the index
; + return ( +
+
+
+
+

+ Welcome to Simple Transit Site +

+

+ A simple way to share transit agencies route schedule information +

+

+ This website is built on the idea that Transit agencies all use + the{" "} + + GTFS specification + + . This website is auto generated on a schedule maps and tables + automatically to keep your website up to date.{" "} +

+
+
+
+
+

About

+
+ +
+

Updates automatically

+

+ 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. +

+
+
+
+ +
+

Uses the GTFS standard

+

+ The GTFS standard is used worldwide and this website can be + updated to work with any transit agency that has one. +

+
+
+
+ +
+

Maps and Schedules

+

+ Each route page has up to date maps and time table schedules for a + great experience for you riders. +

+
+
+
+
+

Contact

+

+ 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. +

+
+ + + + + + + + + +
+
+
+ ); } diff --git a/app/routes/__root.tsx b/app/routes/__root.tsx index de122b8..16c5dd5 100644 --- a/app/routes/__root.tsx +++ b/app/routes/__root.tsx @@ -25,11 +25,11 @@ export default function RootTemplate() { return (
-
+
- + -
+
Routes{" "} @@ -44,9 +44,15 @@ export default function RootTemplate() { ))} + + About + + + Contact +
-
+
diff --git a/app/tailwind.css b/app/tailwind.css index af2bab8..a15913f 100644 --- a/app/tailwind.css +++ b/app/tailwind.css @@ -100,3 +100,11 @@ th { tr:nth-child(even) { background-color: #dddddd; } + +.link { + @apply text-gray-300 font-medium underline hover:text-blue-500; +} + +.header { + background: url("/header.jpg") center/cover; +} diff --git a/public/header.jpg b/public/header.jpg new file mode 100644 index 0000000..ad8798c Binary files /dev/null and b/public/header.jpg differ