diff --git a/curriculum.html b/curriculum.html new file mode 100644 index 0000000..3666d60 --- /dev/null +++ b/curriculum.html @@ -0,0 +1,303 @@ + + + + Code Abode + + + + + + + + + +
+ You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today. +
+
+
+
+
+
+
+
+
+ +
+
+
+
What we teach
+

Example Curriculum

+

We tailor curriculums depending on each student, but if you need some ideas you're at the right place

+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ + +
+ + + + + diff --git a/faq.html b/faq.html new file mode 100644 index 0000000..68644d5 --- /dev/null +++ b/faq.html @@ -0,0 +1,302 @@ + + + + Code Abode + + + + + + + + + +
+ You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today. +
+
+
+
+
+
+
+
+
+ +
+
+
+
FAQs
+

Frequently asked questions

+
+
+
+
+
+
    +
  • +

    What material do we use?

    +

    + We use materials sourced from university content. For example, our low level work is sourced from Programming Methodology I at Rutgers University. We strive to make this content both accessible and understandable to children. +

    +
  • +
  • +

    How much does it cost?

    +

    + The program cost varies from individual to individual and the gap between where they are right now and where they want to be. For example, the price of teaching a kid with python skills will be lower than if they had no prior experience. However, we welcome your child regardless of how much experience they have and we are flexible with the program fees. +

    +
  • +
+
+
+
    +
  • +

    How long is the program?

    +

    + The program length is relatively consistent at about 8 weeks, however we are flexible with the length of the program, depending on the exact needs of your child and the scope of their ambitions. +

    +
  • +
  • +

    What is your refund policy?

    +

    Refunds are accepted within a week of program start. If you are unsatisfied with our teaching, please reach out to us and we will provide you with compensation. +

    +
  • +
+
+
+
+
+
+
+ + +
+ + + + + diff --git a/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf b/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf new file mode 100644 index 0000000..0d7c497 Binary files /dev/null and b/fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf differ diff --git a/fonts/PlayfairDisplay-VariableFont_wght.ttf b/fonts/PlayfairDisplay-VariableFont_wght.ttf new file mode 100644 index 0000000..eafb6ff Binary files /dev/null and b/fonts/PlayfairDisplay-VariableFont_wght.ttf differ diff --git a/fonts/static/PlayfairDisplay-Black.ttf b/fonts/static/PlayfairDisplay-Black.ttf new file mode 100644 index 0000000..204f5bf Binary files /dev/null and b/fonts/static/PlayfairDisplay-Black.ttf differ diff --git a/fonts/static/PlayfairDisplay-BlackItalic.ttf b/fonts/static/PlayfairDisplay-BlackItalic.ttf new file mode 100644 index 0000000..5fdffad Binary files /dev/null and b/fonts/static/PlayfairDisplay-BlackItalic.ttf differ diff --git a/fonts/static/PlayfairDisplay-Bold.ttf b/fonts/static/PlayfairDisplay-Bold.ttf new file mode 100644 index 0000000..029a1a6 Binary files /dev/null and b/fonts/static/PlayfairDisplay-Bold.ttf differ diff --git a/fonts/static/PlayfairDisplay-BoldItalic.ttf b/fonts/static/PlayfairDisplay-BoldItalic.ttf new file mode 100644 index 0000000..921435f Binary files /dev/null and b/fonts/static/PlayfairDisplay-BoldItalic.ttf differ diff --git a/fonts/static/PlayfairDisplay-ExtraBold.ttf b/fonts/static/PlayfairDisplay-ExtraBold.ttf new file mode 100644 index 0000000..1efccad Binary files /dev/null and b/fonts/static/PlayfairDisplay-ExtraBold.ttf differ diff --git a/fonts/static/PlayfairDisplay-ExtraBoldItalic.ttf b/fonts/static/PlayfairDisplay-ExtraBoldItalic.ttf new file mode 100644 index 0000000..6a37707 Binary files /dev/null and b/fonts/static/PlayfairDisplay-ExtraBoldItalic.ttf differ diff --git a/fonts/static/PlayfairDisplay-Italic.ttf b/fonts/static/PlayfairDisplay-Italic.ttf new file mode 100644 index 0000000..436dff0 Binary files /dev/null and b/fonts/static/PlayfairDisplay-Italic.ttf differ diff --git a/fonts/static/PlayfairDisplay-Medium.ttf b/fonts/static/PlayfairDisplay-Medium.ttf new file mode 100644 index 0000000..f92eba4 Binary files /dev/null and b/fonts/static/PlayfairDisplay-Medium.ttf differ diff --git a/fonts/static/PlayfairDisplay-MediumItalic.ttf b/fonts/static/PlayfairDisplay-MediumItalic.ttf new file mode 100644 index 0000000..8b8ae4d Binary files /dev/null and b/fonts/static/PlayfairDisplay-MediumItalic.ttf differ diff --git a/fonts/static/PlayfairDisplay-Regular.ttf b/fonts/static/PlayfairDisplay-Regular.ttf new file mode 100644 index 0000000..503b7c4 Binary files /dev/null and b/fonts/static/PlayfairDisplay-Regular.ttf differ diff --git a/fonts/static/PlayfairDisplay-SemiBold.ttf b/fonts/static/PlayfairDisplay-SemiBold.ttf new file mode 100644 index 0000000..1c2a57b Binary files /dev/null and b/fonts/static/PlayfairDisplay-SemiBold.ttf differ diff --git a/fonts/static/PlayfairDisplay-SemiBoldItalic.ttf b/fonts/static/PlayfairDisplay-SemiBoldItalic.ttf new file mode 100644 index 0000000..cd47cca Binary files /dev/null and b/fonts/static/PlayfairDisplay-SemiBoldItalic.ttf differ diff --git a/gulpfile.js b/gulpfile.js index 2ed6977..62c763d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -50,6 +50,15 @@ gulp.task("fonts", function () { .pipe(connect.reload()); }); + +// Other useless content +gulp.task("other", function () { + return gulp + .src(["./other/**"], { removeBOM: false }) + .pipe(gulp.dest("./dist/other")) + .pipe(connect.reload()); +}); + gulp.task("html", function () { return gulp .src("./index.html") diff --git a/index.html b/index.html index 7274b43..a97be67 100644 --- a/index.html +++ b/index.html @@ -115,6 +115,34 @@ /> +
+
+
+ Curriculum + +
+
+
+ +
+
+
+ FAQ + +
+
+
+
@@ -157,9 +185,11 @@
+

Let's build your child's wildest dreams, together.

@@ -201,22 +231,37 @@ > -
-
-
-
-
Why Choose Us
-

We believe firmly in nurturing curiosity

-

to help your child grow in ways they couldn't before.

- Take a look at how we teach + + +
+
+
+
+

Median pay for CS majors

+
+ $
119385
+
+
+
+
+
+

Size of workforce

+
+
2320000
[1] +
+
+
+
+
+

Size of the industry

+
+ $
423.54
+
b
+ [2] +
-
@@ -559,232 +604,6 @@
-
- - - - - -
-
Our People
-

- This is yap, pls hide this section -

-
-
-

- Probably will use this for project showcases in the future. -

- View More -
-
-
- - - - -
-
- - - - - - -
-
-
-
- -
-
-

Apply for an Internship (move this down)

-

- We are looking for passionate developers who have a love for teaching. -

- Intern with us -
-
-
-
- -
-
-
-
-
    -
  • -
    -
    -

    - In-person Enrollment -

    -

    - Instruction will take place at a location determined by you and your specific instructor. This could be a classroom with other students, one on one instruction at your or their residency. The majority of our instructors live near Princeton, NJ. -

    -
    -
  • -
  • -
    -
    -

    - Virtual Enrollment -

    -

    - Virtual enrollment is a possibility for all students. We will provide instruction via Zoom or Jitsi Meet in a one-on-one or small group setting to ensure your child is unlocking their full potential. -

    -
    -
  • -
-
-
-
- -
-
-
-
-
-
- -
-
-
-
-
-

Any questions?

-

Don´t hesitate to get in touch.

-
-
- -
-
-
@@ -793,7 +612,7 @@ >
Things we do
-

this is yap

+

Soon your child will too.

@@ -836,7 +655,7 @@ fill="#293043" > -

Goal-oriented work

+

Introduction to Coding

@@ -885,7 +704,7 @@ fill="#293043" > -

Web development

+

Web Development

@@ -916,7 +735,7 @@ > -

Cool animations

+

Hardware Projects

@@ -1043,7 +862,7 @@ > -

Stealing SVGs

+

App Development

@@ -1091,7 +910,7 @@ fill="#293043" > -

Making money

+

Machne Learning

@@ -1121,7 +940,7 @@ fill="#293043" > -

USACO winning

+

Low Level Programming

@@ -1248,7 +1067,7 @@ > -

Coding better

+

Robotics

@@ -1273,7 +1092,7 @@ fill="#293043" > -

For random reasons

+

Game Development

@@ -1281,6 +1100,193 @@
+ +
+
+
+
+
Why Choose Us
+

We believe firmly in nurturing curiosity

+

We use your child's ideas and build the skills needed for their project. This approach has proven to be the most effective in teaching otherwise bland content that will equip them fot the future.

+ Take a look at how we teach +
+
+
+
+ + +
+ + + + + + +
+
+
+
+
+

Any questions?

+

Don´t hesitate to get in touch.

+
+
+ +
+
+
+ + +
+ diff --git a/intern.html b/intern.html new file mode 100644 index 0000000..9e10d85 --- /dev/null +++ b/intern.html @@ -0,0 +1,237 @@ + + + + Code Abode + + + + + + + + + +
+ You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today. +
+
+
+
+
+
+
+
+
+ + +
+
+
+
+ +
+
+

Apply for an Internship

+

+ We are looking for passionate developers who have a love for teaching. +

+ Intern with us +
+
+
+
+ + +

+ © Code AbodeAll Rights Reserved. +

+
+
+ +
+ + + + diff --git a/location.html b/location.html new file mode 100644 index 0000000..da46873 --- /dev/null +++ b/location.html @@ -0,0 +1,332 @@ + + + + Code Abode + + + + + + + + + +
+ You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today. +
+
+
+
+
+
+
+
+
+ +
+
+ + + + + +
+ +
+
+
+
+
    +
  • +
    +
    +

    + In-person Enrollment +

    +

    + Instruction will take place at a location determined by you and your specific instructor. This could be a classroom with other students, one on one instruction at your or their residency. The majority of our instructors live near Princeton, NJ. +

    +
    +
  • +
  • +
    +
    +

    + Virtual Enrollment +

    +

    + Virtual enrollment is a possibility for all students. We will provide instruction via Zoom or Jitsi Meet in a one-on-one or small group setting to ensure your child is unlocking their full potential. +

    +
    +
  • +
+
+
+
+ +
+
+
+
+
+
+ + +
+ + + + + diff --git a/other/SampleCurriculum.pdf b/other/SampleCurriculum.pdf new file mode 100644 index 0000000..52e3589 Binary files /dev/null and b/other/SampleCurriculum.pdf differ