diff --git a/components/NavBar.vue b/components/NavBar.vue new file mode 100644 index 0000000..2c0633b --- /dev/null +++ b/components/NavBar.vue @@ -0,0 +1,11 @@ + + + diff --git a/pages/About.vue b/pages/About.vue index 6043c5c..81bc87d 100644 --- a/pages/About.vue +++ b/pages/About.vue @@ -2,26 +2,28 @@ + + diff --git a/pages/Projects.vue b/pages/Projects.vue new file mode 100644 index 0000000..cf6e5d3 --- /dev/null +++ b/pages/Projects.vue @@ -0,0 +1,17 @@ + + + + + diff --git a/pages/index.vue b/pages/index.vue index fb187e1..71c1ebd 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -2,26 +2,28 @@ \ No newline at end of file diff --git a/public/favicon.ico b/public/favicon.ico index feb8f24..9713685 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/homepage-bg2-1080p.png b/public/homepage-bg2-1080p.png new file mode 100644 index 0000000..d4c3410 Binary files /dev/null and b/public/homepage-bg2-1080p.png differ diff --git a/public/homepage-bg2-4kuhd.png b/public/homepage-bg2-4kuhd.png new file mode 100644 index 0000000..3178336 Binary files /dev/null and b/public/homepage-bg2-4kuhd.png differ diff --git a/public/homepage-bg2-ipad.png b/public/homepage-bg2-ipad.png new file mode 100644 index 0000000..170ec23 Binary files /dev/null and b/public/homepage-bg2-ipad.png differ diff --git a/public/homepage-bg2-phone.png b/public/homepage-bg2-phone.png new file mode 100644 index 0000000..24f857a Binary files /dev/null and b/public/homepage-bg2-phone.png differ diff --git a/public/homepage-bg2.png b/public/homepage-bg2.png new file mode 100644 index 0000000..e663273 Binary files /dev/null and b/public/homepage-bg2.png differ diff --git a/tailwind.config.js b/tailwind.config.js index 7e353b0..bffaa68 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -5,10 +5,15 @@ srcDir = '.' module.exports = { theme: { colors: { - "blue": "#005EB8", - "dark-blue": "#005A81", - "lightest-blue": "#BFECFF", - "light-blue": "#80D9FF", + /* From image of desktop */ + "dark-blue": "#011126", + "blue": "#0367A6", + "light-blue": "#05AFF2", + "lightest-blue": "#05DBF2", + "turquoise": "#05F2DB", + + /* other colors */ + "black": "#000000", "white": "#FFFFFF", "charcoal": "#343434", "grey": "#6A6A6A", @@ -18,7 +23,7 @@ module.exports = { "dark-green": "#228b22", }, fontFamily: { - sans: ["Arial", "sans-serif"], + sans: ["Helvetica", "sans-serif"], } }, plugins: [],