-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
114 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |