diff --git a/layouts/general_layout/GeneralLayout.jsx b/layouts/general_layout/GeneralLayout.jsx index e52c914..2d59c68 100644 --- a/layouts/general_layout/GeneralLayout.jsx +++ b/layouts/general_layout/GeneralLayout.jsx @@ -1,6 +1,7 @@ import React, { Fragment } from 'react'; import GeneralHeader from './GeneralHeader'; import Head from "next/head" +import GeneralFooter from './GeneralFooter'; const GeneralLayout = ({ children }) => { return ( @@ -9,9 +10,10 @@ const GeneralLayout = ({ children }) => { -
+
{ children } -
+ + ) } diff --git a/pages/about.jsx b/pages/about.jsx index f843a21..d472206 100644 --- a/pages/about.jsx +++ b/pages/about.jsx @@ -22,103 +22,108 @@ const about = () => {
-

- +
+

+
    +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
+
+ +
+

+
    +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
  • +

    + + + +
  • +
+
-

-
See my resume diff --git a/pages/index.jsx b/pages/index.jsx index 68124f4..1ed3a97 100644 --- a/pages/index.jsx +++ b/pages/index.jsx @@ -21,6 +21,11 @@ const index = () => {
See my resume Linkedin + Contact Me
diff --git a/styles/main.css b/styles/main.css index 6b030e9..a1c88e4 100644 --- a/styles/main.css +++ b/styles/main.css @@ -32,7 +32,6 @@ body { width: 100%; margin: 0px; padding: 40px; - padding-bottom: 100px; top: 0; justify-content: center; background-color: var(--dark-color); diff --git a/styles/tw_main.css b/styles/tw_main.css index 35f2ba9..b90dd74 100644 --- a/styles/tw_main.css +++ b/styles/tw_main.css @@ -47,30 +47,10 @@ position: fixed } -.absolute { - position: absolute -} - -.top-4 { - top: 1rem -} - -.left-4 { - left: 1rem -} - -.right-4 { - right: 1rem -} - .top-0 { top: 0px } -.right-0 { - right: 0px -} - .left-0 { left: 0px } @@ -79,8 +59,16 @@ z-index: -10 } -.mb-0 { - margin-bottom: 0px +.mt-10 { + margin-top: 2.5rem +} + +.mt-auto { + margin-top: auto +} + +.mb-2 { + margin-bottom: 0.5rem } .mb-1 { @@ -91,74 +79,48 @@ display: block } -.h-10 { - height: 2.5rem -} - -.h-28 { - height: 7rem -} - -.h-96 { - height: 24rem -} - -.h-full { - height: 100% -} - -.h-8 { - height: 2rem -} - -.h-4 { - height: 1rem +.flex { + display: flex } .h-6 { height: 1.5rem } -.w-10 { - width: 2.5rem -} - -.w-28 { - width: 7rem -} - -.w-96 { - width: 24rem -} - .w-full { width: 100% } -.bg-slate-600 { - --tw-bg-opacity: 1; - background-color: rgb(71 85 105 / var(--tw-bg-opacity)) +.flex-col { + flex-direction: column } -.bg-red-600 { - --tw-bg-opacity: 1; - background-color: rgb(220 38 38 / var(--tw-bg-opacity)) +.border { + border-width: 1px } -.text-slate-600 { - --tw-text-opacity: 1; - color: rgb(71 85 105 / var(--tw-text-opacity)) +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem } -.text-blue-600 { - --tw-text-opacity: 1; - color: rgb(37 99 235 / var(--tw-text-opacity)) +.text-xl { + font-size: 1.25rem; + line-height: 1.75rem } -.opacity-25 { - opacity: 0.25 +.font-bold { + font-weight: 700 } .opacity-50 { opacity: 0.5 } + +.opacity-20 { + opacity: 0.2 +} + +.opacity-40 { + opacity: 0.4 +} diff --git a/tailwind.config.js b/tailwind.config.js index 48cf9ed..16100d9 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,5 +1,5 @@ module.exports = { - content: ["./components/**/*.{html,js,jsx}", "./pages/**/*.jsx"], + content: ["./components/**/*.{html,js,jsx}", "./pages/**/*.jsx", , "./layouts/**/*.jsx"], theme: { screens: { xs: "350px",