Skip to content
This repository was archived by the owner on Jul 2, 2025. It is now read-only.
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
![image](https://user-images.githubusercontent.com/8452197/223853814-a2e29af3-d321-4893-8d8d-69eb2e3f6940.png)

<h1>Entry Level</h1>
<p>Welcome to Entry Level, a job board specifically designed to help entry level developers, designers, and other professionals find remote job opportunities.</p>
<p>This project is built using React and Next.js, and is hosted on Vercel at <a href="entry-levels.vercel.app/">entry-levels.vercel.app/</a>.</p>
Expand All @@ -18,6 +19,7 @@ npm install or yarn install
Copy the .env-example file and renamed to .env
Add the necesary enviroment variables
</code></pre>

<p>Then, start the development server:</p>
<pre><code>npm run dev or yarn dev
</code></pre>
Expand Down
36 changes: 27 additions & 9 deletions styles/fonts/fonts.css
Original file line number Diff line number Diff line change
@@ -1,70 +1,88 @@
@font-face {
font-family: 'Lexend';
src: url('Lexend-Black.woff2') format('woff2'), url('Lexend-Black.woff') format('woff');
src:
url('Lexend-Black.woff2') format('woff2'),
url('Lexend-Black.woff') format('woff');
font-weight: 900;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-Bold.woff2') format('woff2'), url('Lexend-Bold.woff') format('woff');
src:
url('Lexend-Bold.woff2') format('woff2'),
url('Lexend-Bold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-ExtraBold.woff2') format('woff2'), url('Lexend-ExtraBold.woff') format('woff');
src:
url('Lexend-ExtraBold.woff2') format('woff2'),
url('Lexend-ExtraBold.woff') format('woff');
font-weight: bold;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-Light.woff2') format('woff2'), url('Lexend-Light.woff') format('woff');
src:
url('Lexend-Light.woff2') format('woff2'),
url('Lexend-Light.woff') format('woff');
font-weight: 300;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-ExtraLight.woff2') format('woff2'), url('Lexend-ExtraLight.woff') format('woff');
src:
url('Lexend-ExtraLight.woff2') format('woff2'),
url('Lexend-ExtraLight.woff') format('woff');
font-weight: 200;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-Medium.woff2') format('woff2'), url('Lexend-Medium.woff') format('woff');
src:
url('Lexend-Medium.woff2') format('woff2'),
url('Lexend-Medium.woff') format('woff');
font-weight: 500;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-Regular.woff2') format('woff2'), url('Lexend-Regular.woff') format('woff');
src:
url('Lexend-Regular.woff2') format('woff2'),
url('Lexend-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-SemiBold.woff2') format('woff2'), url('Lexend-SemiBold.woff') format('woff');
src:
url('Lexend-SemiBold.woff2') format('woff2'),
url('Lexend-SemiBold.woff') format('woff');
font-weight: 600;
font-style: normal;
font-display: swap;
}

@font-face {
font-family: 'Lexend';
src: url('Lexend-Thin.woff2') format('woff2'), url('Lexend-Thin.woff') format('woff');
src:
url('Lexend-Thin.woff2') format('woff2'),
url('Lexend-Thin.woff') format('woff');
font-weight: 100;
font-style: normal;
font-display: swap;
Expand Down