-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Event routing works fully and some formatting changes throughout site.
- Loading branch information
1 parent
c965a81
commit efd1311
Showing
15 changed files
with
177 additions
and
101 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-- CreateTable | ||
CREATE TABLE "Event" ( | ||
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, | ||
"name" TEXT NOT NULL, | ||
"description" TEXT NOT NULL, | ||
"time" DATETIME NOT NULL, | ||
"location" TEXT NOT NULL, | ||
"picture" TEXT NOT NULL, | ||
"program" TEXT NOT NULL, | ||
"rsvpLink" TEXT NOT NULL | ||
); | ||
|
||
-- CreateTable | ||
CREATE TABLE "JobPosting" ( | ||
"id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, | ||
"image" TEXT NOT NULL, | ||
"title" TEXT NOT NULL, | ||
"company" TEXT NOT NULL, | ||
"jobType" TEXT NOT NULL, | ||
"jobPosition" TEXT NOT NULL, | ||
"jobLocation" TEXT NOT NULL, | ||
"date" TEXT NOT NULL, | ||
"url" TEXT NOT NULL | ||
); |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Please do not edit this file manually | ||
# It should be added in your version-control system (i.e. Git) | ||
provider = "sqlite" |
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
export const events = [ | ||
{ | ||
name: "Interview Prep: Graphs", | ||
description: | ||
"Learn about the fundamentals of graphs to prepare for technical interviews!", | ||
time: new Date("2023-11-08T21:00:00.000Z"), | ||
location: "CBC 155", | ||
picture: | ||
"https://res.cloudinary.com/dh6y8bufo/image/upload/v1699911150/init-dashboard/Interview%20Prep%20Image.avif", | ||
program: "Reach", | ||
rsvpLink: "https://lu.ma/p31somhk", | ||
}, | ||
{ | ||
name: "Design: Build a Portfolio", | ||
description: | ||
"Learn to create projects for your portfolio and gain UI/UX experience!", | ||
time: new Date("2023-10-26T20:00:00.000Z"), | ||
location: "CASE 132", | ||
picture: | ||
"https://res.cloudinary.com/dh6y8bufo/image/upload/v1699914651/init-dashboard/Mock%20Interview.jpg", | ||
program: "Explore", | ||
rsvpLink: "https://lu.ma/pzc4g76u", | ||
}, | ||
]; |
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
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
Oops, something went wrong.