diff --git a/components/elements/smallstyledbutton.tsx b/components/elements/smallstyledbutton.tsx index 4313823..edd1289 100644 --- a/components/elements/smallstyledbutton.tsx +++ b/components/elements/smallstyledbutton.tsx @@ -24,7 +24,7 @@ export default function StyledButton(props: any) { transition-duration: 0.2s; } `} - {props.children} + {props.children} ) } \ No newline at end of file diff --git a/components/elements/styledbutton.tsx b/components/elements/styledbutton.tsx index b5ef7f5..9d6439d 100644 --- a/components/elements/styledbutton.tsx +++ b/components/elements/styledbutton.tsx @@ -25,7 +25,7 @@ export default function StyledButton(props: any) { transition-duration: 0.2s; } `} - {props.children} + {props.children} ) } \ No newline at end of file diff --git a/pages/contact.tsx b/pages/contact.tsx index 9428b54..dde95fc 100644 --- a/pages/contact.tsx +++ b/pages/contact.tsx @@ -9,6 +9,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import { faEnvelope } from '@fortawesome/free-solid-svg-icons' import { faTwitter } from '@fortawesome/free-brands-svg-icons' import { faDiscord } from '@fortawesome/free-brands-svg-icons' +import { faPhoneSlash } from '@fortawesome/free-solid-svg-icons' export default function Contact() { return ( @@ -28,17 +29,13 @@ export default function Contact() { } `} -

{"📬 Contact us"}

-
-
- Shoot us an email - Message us on our Discord server - Send a DM to our Twitter account -
-

- {"We typically respond within a few hours."}

- {"📵 We don't have a public phone number for contact."}
-

+
+

{"📬 Contact us"}

+ Shoot us an email + Message us on our Discord server + Send a DM to our Twitter account + We have no public phone number +

{"We typically respond within a few hours during business hours."}

diff --git a/pages/index.tsx b/pages/index.tsx index eea140f..0e703eb 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -130,7 +130,7 @@ export default function Home() {
-
+ {/*

@@ -154,7 +154,7 @@ export default function Home() {

-
+
*/}

diff --git a/styles/globals.css b/styles/globals.css index df3b8c7..3cc2a46 100644 --- a/styles/globals.css +++ b/styles/globals.css @@ -1,18 +1,25 @@ /* variables */ :root { + /* paddings */ --padding-sm: 10px; --padding: 20px; --padding-lg: 50px; --padding-xl: 100px; --padding-xxl: 200px; -} -body, body[data-theme="light"] { + /* color palette */ --theme-color: #2463EB; - --theme-color-dilluted: rgba(36, 99, 235, 0.1); --theme-color-500: rgba(36, 99, 235, 0.5); + --theme-color-dilluted: rgba(36, 99, 235, 0.1); + --warning: rgb(255, 163, 25); + --danger: rgb(255, 117, 117); + + /* shadows */ --box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1); +} + +body, body[data-theme="light"] { --background-color: #F3F4F6; --background-color-light: #1044b427; @@ -22,13 +29,7 @@ body, body[data-theme="light"] { --text-color: black; } -body, body[data-theme="dark"] { - --theme-color: #2463EB; - --theme-color-dilluted: rgba(36, 99, 235, 0.1); - --theme-color-500: rgba(36, 99, 235, 0.5); - - --box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1); - +body, body[data-theme="dark"] { --background-color: #1F2937; --background-color-light: #374151; --background-color-dark: #374151;