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

feat: Add our clients' logos to the start page #30

Open
wants to merge 1 commit into
base: main
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
3 changes: 2 additions & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { JobList } from '../src/jobs/components/job-list';
import { getFileListingData } from '../src/jobs/utils/getListings';
import Tjenesteomrader from 'src/tjenesteomrader';
import { useMediaQuery } from '../src/utils/use-media-query';
import ClientLogos from '@components/client-logos';

const stockholmBlobUrl = require('src/stockholm/assets/stokontor.png');
const Stockholm: NextPage<InferGetStaticPropsType<typeof getStaticProps>> = ({
Expand Down Expand Up @@ -60,7 +61,7 @@ const Stockholm: NextPage<InferGetStaticPropsType<typeof getStaticProps>> = ({
.
</p>
</div>

<ClientLogos />
<Tjenesteomrader />
<ContactForm employees={employees} />
<h3 className="fancy">Vi söker fler kollegor</h3>
Expand Down
2 changes: 1 addition & 1 deletion pages/start-page.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.homepage__intro-container {
margin-bottom: 8rem;
margin-bottom: 5rem;
}

.homepage__blob {
Expand Down
104 changes: 104 additions & 0 deletions src/assets/client-logos/720gruppen-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/assets/client-logos/axs_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/client-logos/eghed_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/client-logos/feedbackfrog_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions src/assets/client-logos/froda_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/client-logos/lansforsakringar_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/assets/client-logos/munters_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/client-logos/ramboll_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/assets/client-logos/strategiradet_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/assets/client-logos/vattenfall_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions src/components/client-logos/client-logos.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.client-logos__container {
margin-bottom: 5rem;
}

.client-logos__img-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin-top: 2rem;
gap: 2.5rem 6rem;
}

.client-logos__img-container img {
max-width: 100%;
}
Loading