Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sponsors #149

Open
wants to merge 4 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/images/sponsors/efactory-color.png
Binary file not shown.
Binary file removed public/images/sponsors/efactory.png
Binary file not shown.
Binary file added public/images/sponsors/logic-forte-edit-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions src/components/Blocks/Sponsors/Sponsors.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
justify-content: center;
align-items: flex-end;

@include mq-below(mid-small) {
@include mq-below(small) {
flex-direction: column;
gap: 60px;
align-items: center;
Expand All @@ -27,15 +27,15 @@
flex-direction: column;
align-items: center;
gap: 5px;
width: 375px;
max-width: 100%;
max-width: 120%;
border-radius: 20px;
background-color: #e9f5ff;
box-shadow: -2px 4px 10px rgba(19, 54, 84, 0.21);
padding: 16px;

.image {
margin-top: -48px !important;
height: 1rem;
}

h3 {
Expand Down
15 changes: 12 additions & 3 deletions src/components/Blocks/Sponsors/Sponsors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,28 @@ import styles from './Sponsors.module.scss';
export function Sponsors(): JSX.Element {
const sponsors = [
{
src: '/images/sponsors/efactory-color.png',
src: '/images/sponsors/eFactory-sponsor-edit-3.png',
width: 275,
height: 92,
alt: 'efactory',
text: 'efactory',
},
{
src: '/images/sponsors/logic-forte-edit-2.png',
width: 275,
height: 92,
alt: 'Logic Forte',
text: 'Logic Forte',
},
];

return (
<div className={styles.wrap}>
<h2>Our Sponsors</h2>
<div className={styles.container}>
{sponsors.map(({ src, alt, text }, index) => (
{sponsors.map(({ src, alt, width, height, text }, index) => (
<div className={styles.card} key={index}>
<Image src={src} width={300} height={75} alt={alt} />
<Image src={src} width={width} height={height} alt={alt} />
<p>{text}</p>
</div>
))}
Expand Down
15 changes: 10 additions & 5 deletions src/pages/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,16 @@
<h1>About Us</h1>
<IconSet icons={teamIcons} />
<p className={styles.groupDescription}>
Open SGF, a volunteer group of designers and developers, provides a forum for local designers; mobile,
web, and application developers to tackle technical problems for our community. Many organizations lack
the necessary funding to produce quality technical solutions for their problems. This group aims to
close that gap by bringing people together to work on these projects weekly. We welcome all skill
levels, and no coding experience is necessary.
We are a volunteer group of designers and developers

Check warning on line 47 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················out·of·Springfield,·Missouri.·We·provide·a·forum·for` with `·out·of·Springfield,·Missouri.·We·provide·a·forum`

Check warning on line 47 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················out·of·Springfield,·Missouri.·We·provide·a·forum·for` with `·out·of·Springfield,·Missouri.·We·provide·a·forum`
out of Springfield, Missouri. We provide a forum for
mobile, web, and application designers and developers

Check warning on line 49 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `mobile,·web,·and·application·designers·and·developers⏎················to·tackle·technical·problems·for·our` with `for·mobile,·web,·and·application·designers·and·developers·to·tackle·technical·problems·for·our⏎···············`

Check warning on line 49 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `mobile,·web,·and·application·designers·and·developers⏎················to·tackle·technical·problems·for·our` with `for·mobile,·web,·and·application·designers·and·developers·to·tackle·technical·problems·for·our⏎···············`
to tackle technical problems for our community.
</p>
<p className={styles.groupDescription}>
Many organizations lack the necessary funding to

Check warning on line 53 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Delete `⏎···············`

Check warning on line 53 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Delete `⏎···············`
produce quality technical solutions for their problems.
This group aims to close that gap by bringing people

Check warning on line 55 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················together·to·work·on·these·projects·weekly·` with `·together·to·work·on·these·projects·weekly`

Check warning on line 55 in src/pages/about.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················together·to·work·on·these·projects·weekly·` with `·together·to·work·on·these·projects·weekly`
together to work on these projects weekly
</p>
<Gallery images={images} />
</div>
Expand Down
15 changes: 11 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@
const heroText = (
<div className={styles.heroText}>
<h1>Open SGF</h1>
<p>
We are a volunteer group of designers and developers out of Springfield, Missouri. We provide a forum
for local designers, and developers to tackle technical problems for our community. We meet weekly and
welcome all skill levels. No coding experience is necessary.
<p className={styles.groupDescription}>
We are a volunteer group of designers and developers

Check warning on line 20 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················out·of·Springfield,·Missouri.·We·provide·a·forum·for` with `·out·of·Springfield,·Missouri.·We·provide·a·forum`

Check warning on line 20 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················out·of·Springfield,·Missouri.·We·provide·a·forum·for` with `·out·of·Springfield,·Missouri.·We·provide·a·forum`
out of Springfield, Missouri. We provide a forum for
mobile, web, and application designers and developers

Check warning on line 22 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `mobile,·web,·and·application·designers·and·developers⏎················to·tackle·technical·problems·for·our` with `for·mobile,·web,·and·application·designers·and·developers·to·tackle·technical·problems·for·our⏎···············`

Check warning on line 22 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `mobile,·web,·and·application·designers·and·developers⏎················to·tackle·technical·problems·for·our` with `for·mobile,·web,·and·application·designers·and·developers·to·tackle·technical·problems·for·our⏎···············`
to tackle technical problems for our community.
</p>
<p className={styles.groupDescription}>
Many organizations lack the necessary funding to

Check warning on line 26 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Delete `⏎···············`

Check warning on line 26 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Delete `⏎···············`
produce quality technical solutions for their problems.
This group aims to close that gap by bringing people

Check warning on line 28 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················together·to·work·on·these·projects·weekly·` with `·together·to·work·on·these·projects·weekly`

Check warning on line 28 in src/pages/index.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················together·to·work·on·these·projects·weekly·` with `·together·to·work·on·these·projects·weekly`
together to work on these projects weekly
</p>
</div>
);
Expand Down
17 changes: 11 additions & 6 deletions src/pages/volunteer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,17 @@
const heroText: JSX.Element = (
<div className={styles.heroText}>
<h1>Volunteer With Us</h1>
<p>
Open SGF, a volunteer group of designers and developers, provides a forum for local designers; mobile,
web, and application developers to tackle technical problems for our community. Many organizations lack
the necessary funding to produce quality technical solutions for their problems. This group aims to
close that gap by bringing people together to work on these projects weekly. We welcome all skill
levels, and no coding experience is necessary.
<p className={styles.groupDescription}>
We are a volunteer group of designers and developers

Check warning on line 27 in src/pages/volunteer.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················out·of·Springfield,·Missouri.·We·provide·a·forum·for` with `·out·of·Springfield,·Missouri.·We·provide·a·forum`

Check warning on line 27 in src/pages/volunteer.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `⏎················out·of·Springfield,·Missouri.·We·provide·a·forum·for` with `·out·of·Springfield,·Missouri.·We·provide·a·forum`
out of Springfield, Missouri. We provide a forum for
mobile, web, and application designers and developers

Check warning on line 29 in src/pages/volunteer.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `mobile,·web,·and·application·designers·and·developers⏎················to·tackle·technical·problems·for·our` with `for·mobile,·web,·and·application·designers·and·developers·to·tackle·technical·problems·for·our⏎···············`

Check warning on line 29 in src/pages/volunteer.tsx

View workflow job for this annotation

GitHub Actions / Run linters

Replace `mobile,·web,·and·application·designers·and·developers⏎················to·tackle·technical·problems·for·our` with `for·mobile,·web,·and·application·designers·and·developers·to·tackle·technical·problems·for·our⏎···············`
to tackle technical problems for our community.
</p>
<p className={styles.groupDescription}>
Many organizations lack the necessary funding to
produce quality technical solutions for their problems.
This group aims to close that gap by bringing people
together to work on these projects weekly
</p>
<h2 className="p">Where We Could Use Help</h2>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion styles/pages/About.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
}

.groupDescription {
margin: 44px 0;
margin: 0px 44px 22px 44px;
}

&>* {
Expand Down
4 changes: 4 additions & 0 deletions styles/pages/Home.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
));
margin: 0 0 32px 0;
}

p {
margin-bottom: 22px;
}
}

.projectTeaserText {
Expand Down
Loading