+ )
+}
\ No newline at end of file
From 7fcdb9186ed35120b32133043bece119c9bbfc27 Mon Sep 17 00:00:00 2001
From: Connor_Crump
Date: Thu, 12 Oct 2023 16:08:41 -0700
Subject: [PATCH 009/136] Setup basic html and css for Video section
---
studyAi/src/app/about/components/Video.tsx | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/studyAi/src/app/about/components/Video.tsx b/studyAi/src/app/about/components/Video.tsx
index e69de29b..c0c7f21f 100644
--- a/studyAi/src/app/about/components/Video.tsx
+++ b/studyAi/src/app/about/components/Video.tsx
@@ -0,0 +1,13 @@
+export default function Video() {
+ return (
+
+
Empowering students to succeed through innovative AI-driven exam preparation.
+
+ At our company, we are driven by a mission to provide students with the most effective and comprehensive
+ exam preparation tools. Our vision is to revolutionize the way students study and achieve their academic goals.
+ We are guided by our core values of excellence, innovation, and student success.
+
+
+
+ )
+}
\ No newline at end of file
From 41917fcdbc78586706bf815509673c508adc846b Mon Sep 17 00:00:00 2001
From: Vincent Lau
Date: Fri, 13 Oct 2023 10:59:24 -0400
Subject: [PATCH 010/136] aboutpageV
---
studyAi/src/app/about/components/ExamPrep.tsx | 17 ++++++++++
studyAi/src/app/about/components/Process.tsx | 32 +++++++++++++++++++
studyAi/src/app/about/page.tsx | 3 ++
3 files changed, 52 insertions(+)
diff --git a/studyAi/src/app/about/components/ExamPrep.tsx b/studyAi/src/app/about/components/ExamPrep.tsx
index e69de29b..af0b2f0b 100644
--- a/studyAi/src/app/about/components/ExamPrep.tsx
+++ b/studyAi/src/app/about/components/ExamPrep.tsx
@@ -0,0 +1,17 @@
+"use client"
+export function ExamPrep(){
+ return(
+
+
+
Experience our innovative exam prep
+
Unlock your full potential with our AI-powered practice questions
+
+
+
+
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/studyAi/src/app/about/components/Process.tsx b/studyAi/src/app/about/components/Process.tsx
index e69de29b..5bf39db9 100644
--- a/studyAi/src/app/about/components/Process.tsx
+++ b/studyAi/src/app/about/components/Process.tsx
@@ -0,0 +1,32 @@
+"use client"
+export function Process(){
+ return(
+
+
Why use Ai?
+
Understanding the Process
+
Dive how generating novel practice questions, create better exam results!
)
From 1cd5c387f4a22e6e505b672fc250d00741553ab0 Mon Sep 17 00:00:00 2001
From: Connor_Crump
Date: Fri, 13 Oct 2023 12:10:20 -0700
Subject: [PATCH 013/136] Add skeleton to Team component
---
studyAi/src/app/about/components/Team.tsx | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 studyAi/src/app/about/components/Team.tsx
diff --git a/studyAi/src/app/about/components/Team.tsx b/studyAi/src/app/about/components/Team.tsx
new file mode 100644
index 00000000..4810d4c4
--- /dev/null
+++ b/studyAi/src/app/about/components/Team.tsx
@@ -0,0 +1,6 @@
+export default function Team() {
+ return (
+ <>
+ >
+ )
+}
\ No newline at end of file
From 35209c12fc7293321a90cca78546bda4c2132103 Mon Sep 17 00:00:00 2001
From: Connor_Crump
Date: Fri, 13 Oct 2023 12:11:08 -0700
Subject: [PATCH 014/136] Include import statements
---
studyAi/src/app/about/components/ExamPrep.tsx | 2 +-
studyAi/src/app/about/components/Process.tsx | 2 +-
studyAi/src/app/about/page.tsx | 6 ++++--
3 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/studyAi/src/app/about/components/ExamPrep.tsx b/studyAi/src/app/about/components/ExamPrep.tsx
index af0b2f0b..e8b0efec 100644
--- a/studyAi/src/app/about/components/ExamPrep.tsx
+++ b/studyAi/src/app/about/components/ExamPrep.tsx
@@ -1,5 +1,5 @@
"use client"
-export function ExamPrep(){
+export default function ExamPrep(){
return(
diff --git a/studyAi/src/app/about/components/Process.tsx b/studyAi/src/app/about/components/Process.tsx
index 5bf39db9..245ff673 100644
--- a/studyAi/src/app/about/components/Process.tsx
+++ b/studyAi/src/app/about/components/Process.tsx
@@ -1,5 +1,5 @@
"use client"
-export function Process(){
+export default function Process(){
return(
Why use Ai?
diff --git a/studyAi/src/app/about/page.tsx b/studyAi/src/app/about/page.tsx
index 8822af4b..7db2bb26 100644
--- a/studyAi/src/app/about/page.tsx
+++ b/studyAi/src/app/about/page.tsx
@@ -1,6 +1,8 @@
-
+import Hero from "./components/Hero";
+import Video from "./components/Video";
+import Team from "./components/Team"
import Process from "./components/Process";
-import ExamPrep from "components/ExamPrep";
+import ExamPrep from "./components/ExamPrep";
export default function AboutPage() {
return (
<>
From 22687f91f9c435bf384d9e77be0fad23343876e8 Mon Sep 17 00:00:00 2001
From: Connor_Crump
Date: Fri, 13 Oct 2023 12:37:57 -0700
Subject: [PATCH 015/136] Add placeholder image to Video component
---
studyAi/public/placeholderImages/video.png | Bin 0 -> 1698 bytes
studyAi/src/app/about/components/Video.tsx | 21 ++++++++++++---------
2 files changed, 12 insertions(+), 9 deletions(-)
create mode 100644 studyAi/public/placeholderImages/video.png
diff --git a/studyAi/public/placeholderImages/video.png b/studyAi/public/placeholderImages/video.png
new file mode 100644
index 0000000000000000000000000000000000000000..96db6deaec0b5b72dfb508c246bbd4fd5ce0d871
GIT binary patch
literal 1698
zcmYk-c~lbE9tUu2u_P+9$R$T-(z3)eX`?T7T%HT5uZ1VzGE@Ym3X}(rC1nmX`VX
zd5uQX*w`qQN)-x)TCJX$nORy|YHDig@9*#G>KYv#6$*t)rIO8Nudc3wx*s?L0J=tg
z-X38o6-!h-@&jA_zn?B@wrHK%q8D=>({}-HpEgx?O2IWE^WSRw$Gw
zn!A|Zm}bkSY;H{VUmCYj0f{_@k42?SovC8$&42hHnZv~>9o`5wAE(Q6mL+paQF5lk
z+WHz=8@C^UPyF$nCHUmzoY?O8#Veevw#^V16>un$U+%Uc?U$p)OZ7(zMIF;B;K6YT
z!+~=BBO5Ziedi$Wa&J>EP$n^vfz94$n!PJtHZmMjgwD+d8tRRJ)@ZqEYT97eUH~8
zWDYyh&oblu0-Xoc6H&pPF#L#
zItM9FjX-%`DWzJ>j={6K)UeuE_w<*Q18@P~5DTh?aPHF6BC3S6XRT+?tT}dukkMpx
z;Nc%%u}Q7O2lkxOHF&>W3=^QVaRV!IUmjcy3VkxcJ^mQFrUGRHS+tnfZyTJXtt&Ow
zU${@2P{J=mLuUOW+Gq;W`)5Y~PKSnE-C4-^!!pkn_|$G8Z4R5CJ(U&jj(y*TL4D;3
zJ<{e2_XxW?Z;-yMGq+MjG3T#zJi%=u>R#7ImKXIuNZgIlU-JLG>!{bU#hhBb%e$BW
zld+%OGE+}Dmlr_g*1ka^Ig@eL<1kw9DYoS1zM*lSZJFLsq!292|L}TALW_^^TJ&$TSO5Z_0?|r13+7oUt1=mrgUZ6q)
z7p(!)2@+%dhXbU%;zyzWl6@G;hAL@eXkwgOt0p)7@d7Dj+^MuKu=m@U%|Pa`8OAWr
znC=YC?!u1P%)@$ubmFZ>$042pv~eCoW|lcoAwQK
ztcREZUKKW^+mQ7NJa5!4v$b(V0_il|#bsXd5J%Ok^XQ-J{S&^gK}fUiq!E(+NEvg``uxE=f_vJ|;-7R;@FHkmt~y3lq^
zs6j?qNG(Cs?>a*pPMm^gmrcTQ7UH4}6i{inj{3gCSU`d~@9iZ(@DE=VF(KDW%2|n6sj+$QbIsQsO~Yp51}E_;7D%-oz42}j9(k@~&>|xq5BLY>XtFDP
zv`=&LclSdXvDX%NFZ+KT>
zD;%!#_k2Q|Ah2}WLH$An+*%N+Fo7M;1*d$pJpC`{|I4i^t2N$VK^hG_>XWc$gT|jA
z`HP=VrB6~X3YjwfG?ciEkr=t&{w(ueH!-1vRm?o!tmUnDK+-ZF$^C4Qk9Z2P9aZT+
ms2{vVTA2M;AOCaafct^(T@cO*JreDw1Mq_ec{4qu2!8_bl4?x=
literal 0
HcmV?d00001
diff --git a/studyAi/src/app/about/components/Video.tsx b/studyAi/src/app/about/components/Video.tsx
index c0c7f21f..2fbbe132 100644
--- a/studyAi/src/app/about/components/Video.tsx
+++ b/studyAi/src/app/about/components/Video.tsx
@@ -1,13 +1,16 @@
export default function Video() {
return (
-
-
Empowering students to succeed through innovative AI-driven exam preparation.
-
- At our company, we are driven by a mission to provide students with the most effective and comprehensive
- exam preparation tools. Our vision is to revolutionize the way students study and achieve their academic goals.
- We are guided by our core values of excellence, innovation, and student success.
-
-
-
+ <>
+
+
Empowering students to succeed through innovative AI-driven exam preparation.
+
+ At our company, we are driven by a mission to provide students with the most effective and comprehensive
+ exam preparation tools. Our vision is to revolutionize the way students study and achieve their academic goals.
+ We are guided by our core values of excellence, innovation, and student success.
+
+
+
+ >
+
)
}
\ No newline at end of file
From f2fe21d331d451cec6ab9abfc9b0079a000b8ed6 Mon Sep 17 00:00:00 2001
From: Connor_Crump
Date: Fri, 13 Oct 2023 13:23:38 -0700
Subject: [PATCH 016/136] Add style to Process component
---
studyAi/src/app/about/components/Process.tsx | 34 ++++++++++----------
1 file changed, 17 insertions(+), 17 deletions(-)
diff --git a/studyAi/src/app/about/components/Process.tsx b/studyAi/src/app/about/components/Process.tsx
index 245ff673..a49341a3 100644
--- a/studyAi/src/app/about/components/Process.tsx
+++ b/studyAi/src/app/about/components/Process.tsx
@@ -1,29 +1,29 @@
"use client"
export default function Process(){
return(
-
-
Why use Ai?
-
Understanding the Process
-
Dive how generating novel practice questions, create better exam results!
-
-
-
-
Why it works?
+
+
Why use Ai?
+
Understanding the Process
+
Dive into generating novel practice questions and creating better exam results!
+
+
+
+
How It Works
Discover how novel questions are created!
-
Learn more
+
-
-
-
Why it works?
+
+
+
Why It Works
Discover the power of Ai technology
-
Learn more
+
-
+
-
Why it works?
-
Contribute the power of our endless technology
-
Learn more
+
Join us
+
Contribute and use our endlessly growing technology