From 551d8d77b764bb9e95264c4dfeb8aa1e9964115a Mon Sep 17 00:00:00 2001 From: Kenson Johnson <94240602+kensonjohnson@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:26:02 -0500 Subject: [PATCH 1/4] Add example env file --- .env.local.example | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .env.local.example diff --git a/.env.local.example b/.env.local.example new file mode 100644 index 0000000..b4383db --- /dev/null +++ b/.env.local.example @@ -0,0 +1,3 @@ +NEXT_PUBLIC_SUPABASE_URL=https://.supabase.co +NEXT_PUBLIC_SUPABASE_ANON_KEY= +NEXT_PUBLIC_HOSTNAME=http://localhost:3001 \ No newline at end of file From 54693b228f33da3162992758ccd581e3d27f3bd7 Mon Sep 17 00:00:00 2001 From: Kenson Johnson <94240602+kensonjohnson@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:26:12 -0500 Subject: [PATCH 2/4] Remove nav link to donate page --- components/parts/navigation/Navigation.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/components/parts/navigation/Navigation.tsx b/components/parts/navigation/Navigation.tsx index 872042e..e72c09a 100644 --- a/components/parts/navigation/Navigation.tsx +++ b/components/parts/navigation/Navigation.tsx @@ -67,10 +67,6 @@ function Navigation({}: Props): ReactElement {

Testimonials

*/}
- - Donate - -
Contact Us From 32e8fe1cd6e6a3d8b99b0fcf1a2cbee538cb458c Mon Sep 17 00:00:00 2001 From: Kenson Johnson <94240602+kensonjohnson@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:27:37 -0500 Subject: [PATCH 3/4] Remove donate page --- app/donate/donate.module.scss | 298 +++++++++++++++++----------------- app/donate/page.tsx | 147 ++++++++--------- 2 files changed, 223 insertions(+), 222 deletions(-) diff --git a/app/donate/donate.module.scss b/app/donate/donate.module.scss index 461ffc1..6437806 100644 --- a/app/donate/donate.module.scss +++ b/app/donate/donate.module.scss @@ -1,149 +1,149 @@ -@import '../styles/globals.scss'; - -.container { - display: flex; - flex-direction: column; - margin: $space-xl 0; - color: $textBlack; - - .callToAction { - background-color: $lightenedBlue; - padding: $space-md; - display: flex; - justify-content: space-around; - align-items: center; - - @include for-phone-only { - flex-direction: column; - } - - @include for-tablet-up { - flex-direction: column; - } - - @include for-desktop-up { - flex-direction: row; - } - - .actionText { - width: 50%; - line-height: 1.3; - - @include for-phone-only { - width: 100%; - } - @include for-tablet-up { - width: 80%; - } - @include for-desktop-up { - width: 50%; - } - - h3 { - font-family: $primaryHeaderFont; - } - p { - font-size: $f4; - margin: $space-lg 0; - font-family: $primaryTextFont; - } - } - - img { - @include for-phone-only { - display: none; - } - @include for-tablet-up { - display: none; - } - @include for-desktop-up { - display: inline; - } - } - } - - .donate { - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - padding: $space-xl $space-md; - - h2 { - font-family: $secondaryHeaderFont; - } - - .options { - display: flex; - flex-direction: row; - justify-content: space-around; - align-items: center; - padding: $space-xl $space-md; - width: 100%; - - @include for-phone-only { - flex-direction: column; - } - - @include for-tablet-up { - flex-direction: column; - } - - @include for-desktop-up { - flex-direction: row; - } - - .option { - display: flex; - flex-direction: column; - justify-content: flex-start; - align-items: center; - padding: $space-lg; - - @include for-phone-only { - border-bottom: 1px solid $subTextBlack; - width: 70%; - height: auto; - } - - @include for-tablet-up { - border-bottom: 1px solid $subTextBlack; - width: 70%; - height: auto; - } - - @include for-desktop-up { - border-bottom: none; - width: auto; - height: 200px; - - } - - .paypalContainer { - display: flex; - flex-direction: column; - align-items: center; - } - - .donateText { - font-family: $primaryTextFont; - font-size: $f4; - } - - .donateSubText { - font-family: $secondaryTextFont; - font-size: $f5; - line-height: 1.2; - b { - font-weight: bold; - } - } - - .icon { - margin: $space-sm; - font-size: $f3; - } - } - } - } -} +// @import '../styles/globals.scss'; + +// .container { +// display: flex; +// flex-direction: column; +// margin: $space-xl 0; +// color: $textBlack; + +// .callToAction { +// background-color: $lightenedBlue; +// padding: $space-md; +// display: flex; +// justify-content: space-around; +// align-items: center; + +// @include for-phone-only { +// flex-direction: column; +// } + +// @include for-tablet-up { +// flex-direction: column; +// } + +// @include for-desktop-up { +// flex-direction: row; +// } + +// .actionText { +// width: 50%; +// line-height: 1.3; + +// @include for-phone-only { +// width: 100%; +// } +// @include for-tablet-up { +// width: 80%; +// } +// @include for-desktop-up { +// width: 50%; +// } + +// h3 { +// font-family: $primaryHeaderFont; +// } +// p { +// font-size: $f4; +// margin: $space-lg 0; +// font-family: $primaryTextFont; +// } +// } + +// img { +// @include for-phone-only { +// display: none; +// } +// @include for-tablet-up { +// display: none; +// } +// @include for-desktop-up { +// display: inline; +// } +// } +// } + +// .donate { +// display: flex; +// flex-direction: column; +// align-items: center; +// justify-content: center; +// padding: $space-xl $space-md; + +// h2 { +// font-family: $secondaryHeaderFont; +// } + +// .options { +// display: flex; +// flex-direction: row; +// justify-content: space-around; +// align-items: center; +// padding: $space-xl $space-md; +// width: 100%; + +// @include for-phone-only { +// flex-direction: column; +// } + +// @include for-tablet-up { +// flex-direction: column; +// } + +// @include for-desktop-up { +// flex-direction: row; +// } + +// .option { +// display: flex; +// flex-direction: column; +// justify-content: flex-start; +// align-items: center; +// padding: $space-lg; + +// @include for-phone-only { +// border-bottom: 1px solid $subTextBlack; +// width: 70%; +// height: auto; +// } + +// @include for-tablet-up { +// border-bottom: 1px solid $subTextBlack; +// width: 70%; +// height: auto; +// } + +// @include for-desktop-up { +// border-bottom: none; +// width: auto; +// height: 200px; + +// } + +// .paypalContainer { +// display: flex; +// flex-direction: column; +// align-items: center; +// } + +// .donateText { +// font-family: $primaryTextFont; +// font-size: $f4; +// } + +// .donateSubText { +// font-family: $secondaryTextFont; +// font-size: $f5; +// line-height: 1.2; +// b { +// font-weight: bold; +// } +// } + +// .icon { +// margin: $space-sm; +// font-size: $f3; +// } +// } +// } +// } +// } diff --git a/app/donate/page.tsx b/app/donate/page.tsx index 42569e5..93d1cf6 100644 --- a/app/donate/page.tsx +++ b/app/donate/page.tsx @@ -1,79 +1,80 @@ -import Image from 'next/image'; -import React from 'react'; -import { FaCcPaypal } from 'react-icons/fa'; -import { IoLogoVenmo } from 'react-icons/io5'; -import styles from './donate.module.scss'; +// import Image from "next/image"; +// import React from "react"; +// import { FaCcPaypal } from "react-icons/fa"; +// import { IoLogoVenmo } from "react-icons/io5"; +// import styles from "./donate.module.scss"; const Donate = () => { - return ( -
-
-
-

We appreciate your commitment to helping us combat recidivism

-

Your donation will directly help supply mentees in our program with much needed equipment to aid them in their learning and help fund Project Underdog.

-
- dice spelling out: together is the way -
-
-

Ways to Donate.

-
-
-
-

Donate with Paypal

- -
-
- - -
{' '} -
-
-

Donate with Venmo

- -

Coming Soon!

- {/*

Send your donations to:
@underdogdevs

*/} + return null; + // return ( + //
+ //
+ //
+ //

We appreciate your commitment to helping us combat recidivism

+ //

Your donation will directly help supply mentees in our program with much needed equipment to aid them in their learning and help fund Project Underdog.

+ //
+ // dice spelling out: together is the way + //
+ //
+ //

Ways to Donate.

+ //
+ //
+ //
+ //

Donate with Paypal

+ // + //
+ //
+ // + // + //
{' '} + //
+ //
+ //

Donate with Venmo

+ // + //

Coming Soon!

+ // {/*

Send your donations to:
@underdogdevs

*/} -
-
-

Donate Directly

- Underdog devs logo -

Send your donations to:
- Account owner: Underdog Devs, Inc.
- Bank: Evolve Bank & Trust,
- 6070 Poplar Ave, Suite 200,
- Memphis, TN 38119
- Account number: 9800363760
- Routing number: 084106768 -

-
-
-
-
- ); + //
+ //
+ //

Donate Directly

+ // Underdog devs logo + //

Send your donations to:
+ // Account owner: Underdog Devs, Inc.
+ // Bank: Evolve Bank & Trust,
+ // 6070 Poplar Ave, Suite 200,
+ // Memphis, TN 38119
+ // Account number: 9800363760
+ // Routing number: 084106768 + //

+ //
+ //
+ //
+ //
+ // ); }; export default Donate; From ede0dca0581423f619feb52dbe491195d6a5dcb3 Mon Sep 17 00:00:00 2001 From: Kenson Johnson <94240602+kensonjohnson@users.noreply.github.com> Date: Thu, 8 Aug 2024 18:29:56 -0500 Subject: [PATCH 4/4] Remove reference to donate page --- .../landing/getInvolved/GetInvolved.tsx | 51 ++-- components/parts/footer/Footer.tsx | 230 +++++++++--------- components/parts/navigation/Navigation.tsx | 3 - 3 files changed, 142 insertions(+), 142 deletions(-) diff --git a/components/landing/getInvolved/GetInvolved.tsx b/components/landing/getInvolved/GetInvolved.tsx index 0b7814c..367ab3e 100644 --- a/components/landing/getInvolved/GetInvolved.tsx +++ b/components/landing/getInvolved/GetInvolved.tsx @@ -1,31 +1,30 @@ -import React, { ReactElement } from 'react'; -import Link from 'next/link'; -import styles from './getInvolved.module.scss'; +import React, { ReactElement } from "react"; +import Link from "next/link"; +import styles from "./getInvolved.module.scss"; -interface Props { } +interface Props {} -function GetInvolved({ }: Props): ReactElement { - return ( -
-

Want to Get Involved?

-

Request more information - - here - -

-

Donate - - here - -

-

- OR -

- -

- You can email the team directly at{' '} -

- underdogdevsteam@gmail.com -
- ); +function GetInvolved({}: Props): ReactElement { + return ( +
+

Want to Get Involved?

+

+ Request more information + + here + +

+

- OR -

+

You can email the team directly at{" "}

+ + underdogdevsteam@gmail.com + +
+ ); } export default GetInvolved; diff --git a/components/parts/footer/Footer.tsx b/components/parts/footer/Footer.tsx index c46d110..16c4704 100644 --- a/components/parts/footer/Footer.tsx +++ b/components/parts/footer/Footer.tsx @@ -1,119 +1,123 @@ -import Image from 'next/image'; -import Link from 'next/link'; -import React, { ReactElement } from 'react'; +import Image from "next/image"; +import Link from "next/link"; +import React, { ReactElement } from "react"; import { - BsTwitter, - BsFacebook, - BsYoutube, - BsGithub, - BsLinkedin, -} from 'react-icons/bs'; -import { ImInstagram } from 'react-icons/im'; + BsTwitter, + BsFacebook, + BsYoutube, + BsGithub, + BsLinkedin, +} from "react-icons/bs"; +import { ImInstagram } from "react-icons/im"; // styles -import styles from './footer.module.scss'; +import styles from "./footer.module.scss"; function Footer(): ReactElement { - return ( - - ); + return ( + + ); } -export default Footer; \ No newline at end of file +export default Footer; diff --git a/components/parts/navigation/Navigation.tsx b/components/parts/navigation/Navigation.tsx index e72c09a..2b4c715 100644 --- a/components/parts/navigation/Navigation.tsx +++ b/components/parts/navigation/Navigation.tsx @@ -137,9 +137,6 @@ function Navigation({}: Props): ReactElement { >

setShowLinks(false)}>Testimonials

*/} - setShowLinks(false)}> - Donate - setShowLinks(false)}> Contact Us