diff --git a/app/views/layouts/_footer.html.erb b/app/views/layouts/_footer.html.erb index d70f97e0..13e6f454 100644 --- a/app/views/layouts/_footer.html.erb +++ b/app/views/layouts/_footer.html.erb @@ -16,6 +16,9 @@
<%= link_to "Privacy", page_path("privacy"), class: "footer-link" %>
+
+ <%= link_to "About Us", page_path("about"), class: "footer-link" %> +
diff --git a/app/views/pages/about.html.md b/app/views/pages/about.html.md index 859c0674..293fc200 100644 --- a/app/views/pages/about.html.md +++ b/app/views/pages/about.html.md @@ -1,3 +1,193 @@ -# About + +

+ About Us +

+
+ Our goal is to help UCLA students make informed enrollment decisions by providing UCLA enrollment trends, alerts, reviews, grades, textbooks, and more. All on one website, completely free. Made for UCLA students BY UCLA students. +
-This should say something important. + +

+ Founders +

+
+
+ <%= image_tag('/images/team/nathan_smith.jpg', class: 'rounded-full bg-gray-300 mb-10 mx-auto', style: 'width: 100px; height: 100px; object-fit: cover;') %> +
Nathan Smith
+
Software Engineer @ Stripe
+
+
+
+
Timothy Gu
+
MS Computer Science @ Stanford
+
+
+ + +

+ Our Team +

+
+ +
+
+
+
+ Brandon Pan
+ PM Lead
+
+
+
+
+
+ Justin Quan
+ EM Lead
+
+
+ +
+
+
+ Alwena Lin
+ PM
+
+
+
+
+
+ Andrew Han
+ PM
+
+
+
+
+
+ Brian Ton
+ PM
+
+
+ + +
+
+
+
+ Jiacheng Wang
+ Developer
+
+
+
+
+
+ Jonathan Si
+ Developer
+
+
+
+
+
+ Joycelyn Ng
+ Developer
+
+
+ +
+
+
+ Cecily Hu
+ Designer
+
+
+
+
+
+ Yifei Sun
+ Designer
+
+
+
+
+
+ Elisa Fang
+ Designer
+
+
+ + +
+
+
+
+ Jonathan King
+ Marketer
+
+
+
+
+
+ Katherine Chan
+ Marketer
+
+
+
+
+
+ Kylie Bach
+ Marketer
+
+
+
+
+ + +

+ Alumni +

+
+
+

Coming soon

+ +
+
+ + + + diff --git a/db/structure.sql b/db/structure.sql index f17f7ba8..d9b854ba 100644 --- a/db/structure.sql +++ b/db/structure.sql @@ -130,19 +130,6 @@ CREATE TYPE public.weekly_time_type AS ENUM ( ); --- --- Name: is_graduate(character varying); Type: FUNCTION; Schema: public; Owner: - --- - -CREATE FUNCTION public.is_graduate(num character varying) RETURNS boolean - LANGUAGE plpgsql IMMUTABLE STRICT - AS $$ - BEGIN - RETURN (num SIMILAR TO '%[2-9][0-9][0-9]%'); - END -$$; - - -- -- Name: strposrev(text, text); Type: FUNCTION; Schema: public; Owner: - -- @@ -927,6 +914,18 @@ CREATE SEQUENCE public.pay_webhooks_id_seq ALTER SEQUENCE public.pay_webhooks_id_seq OWNED BY public.pay_webhooks.id; +-- +-- Name: pg_search_documents_id_seq; Type: SEQUENCE; Schema: public; Owner: - +-- + +CREATE SEQUENCE public.pg_search_documents_id_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + -- -- Name: relationships; Type: TABLE; Schema: public; Owner: - -- @@ -2319,14 +2318,6 @@ ALTER TABLE ONLY public.enrollment_data ADD CONSTRAINT fk_rails_9744b3d66e FOREIGN KEY (section_id) REFERENCES public.sections(id); --- --- Name: relationships fk_rails_a3d77c3b00; Type: FK CONSTRAINT; Schema: public; Owner: - --- - -ALTER TABLE ONLY public.relationships - ADD CONSTRAINT fk_rails_a3d77c3b00 FOREIGN KEY (user_id) REFERENCES public.users(id); - - -- -- Name: sections fk_rails_ae061b0a82; Type: FK CONSTRAINT; Schema: public; Owner: - -- diff --git a/public/images/team/nathan_smith.jpg b/public/images/team/nathan_smith.jpg new file mode 100644 index 00000000..0f92b2f7 Binary files /dev/null and b/public/images/team/nathan_smith.jpg differ