Skip to content

Commit

Permalink
init: page structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Quintenps committed Dec 12, 2023
1 parent 06c4af9 commit 4a77501
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/deploy-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: ["main", "test"]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true

jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
# Upload entire repository
path: '.'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
45 changes: 45 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>OnlyOnce AI</title>
<meta name="description" content="OnlyOnce AI">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="/oo-fav.png">
<link rel="stylesheet" href="/pico.min.css">
<link rel="stylesheet" href="/style.css">
</head>

<body>
<main class="container">
<div id="header">
<h1>OnlyOnce</h1>
<h2>Connecting world's top agilists with your business needs</h2>
</div>
<form disabled>
<textarea placeholder="Example: RTE, SPC, manufacturing, chips, SAP MES"></textarea>
<h5>
AI-Powered precision for finding your perfect agile match!
</h5>

<div class="grid">
<button class="primary outline">Upload an Agile Expert</button>
<button class="primary outline">All Filters</button>
</div>
</form>
</main>
<footer class="container">
<div>
<small>Only Once B.V. Copyright © 2023</small>
</div>
<div>
<a href="#">General terms</a> -
<a href="#">Privacy Policy</a> -
<a href="#">Cookie preferences</a>
</div>
</footer>
</body>

</html>
Binary file added oo-fav.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions pico.min.css

Large diffs are not rendered by default.

22 changes: 22 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#header {
display: flex;
flex-direction: column;
align-items: center;
}

h2 {
font-size: 14pt;
font-weight: 600;
}

form > h5 {
color: #32b9b9;
font-weight: 400;
text-align: center;
}

footer {
display: flex;
justify-content: center;
gap: 20px;
}

0 comments on commit 4a77501

Please sign in to comment.