This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
-
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.
* Initial commit from Create Next App * ✨ setup * 🚑 fix download page (#36) * Fix/typo header (#39) * ✨ add maj to header links * adjust header width * trigger deploy * trigger deploy * 🚀 deploy * 🔥 remove hello.ts init file * 📝 update readme * fix/download-page (#37) (#48) * 🚑 fix download links * Fix/change download links (#53) * 🚑 fix download links * Fix/fix download links (#55) * 🚑 fix download links * Fix/links from download page (#57) * 🚑 fix dl links * feat/update-content
- Loading branch information
1 parent
6aa80f6
commit 092646b
Showing
15 changed files
with
363 additions
and
393 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
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,54 @@ | ||
import Link from 'next/link'; | ||
import { Page } from '../common/Page'; | ||
|
||
export const CoCreation = () => ( | ||
<Page className="co-creation"> | ||
<h1>Co-création</h1> | ||
|
||
<iframe | ||
width="560" | ||
height="315" | ||
src="https://www.youtube.com/embed/dhGG_-JPo2E" | ||
title="YouTube video player" | ||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" | ||
allowFullScreen | ||
></iframe> | ||
<div className="items"> | ||
<div className="item"> | ||
<span> | ||
Vous souhaitez connaître la suite ? <br /> Consulter la | ||
roadmap ! | ||
</span> | ||
<Link href="https://github.com/SocialGouv/archifiltre-docs/projects/1"> | ||
docs | ||
</Link> | ||
<Link href="https://github.com/SocialGouv/archifiltre-mails/projects/1"> | ||
mails | ||
</Link> | ||
</div> | ||
<div className="item"> | ||
<span> | ||
Vous voulez contribuez au code ? <br /> Créez une pull | ||
request ! | ||
</span> | ||
<Link href="https://github.com/SocialGouv/archifiltre-docs/pulls"> | ||
docs | ||
</Link> | ||
<Link href="https://github.com/SocialGouv/archifiltre-mails/pulls"> | ||
mails | ||
</Link> | ||
</div> | ||
<div className="item"> | ||
<span> | ||
Vous rencontrez un problème ? <br /> Laissez une issue ! | ||
</span> | ||
<Link href="https://github.com/SocialGouv/archifiltre-docs/issues"> | ||
docs | ||
</Link> | ||
<Link href="https://github.com/SocialGouv/archifiltre-mails/issues"> | ||
mails | ||
</Link> | ||
</div> | ||
</div> | ||
</Page> | ||
); |
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
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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import type { NextPage } from 'next'; | ||
import { UnderConstruction } from '../components/common/UnderConstruction'; | ||
import { CoCreation } from '../components/co-creation/CoCreation'; | ||
|
||
const CoCreationPage: NextPage = () => { | ||
return <UnderConstruction />; | ||
return <CoCreation />; | ||
}; | ||
|
||
export default CoCreationPage; |
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
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
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,48 @@ | ||
.co-creation { | ||
iframe { | ||
display: block; | ||
height: 28vh; | ||
margin: 0 auto 10rem; | ||
min-height: 560px; | ||
min-width: 1055px; | ||
width: 44vw; | ||
} | ||
|
||
h1, | ||
h2 { | ||
text-align: center; | ||
} | ||
|
||
h1 { | ||
@extend %description-75-m; | ||
|
||
font-family: $font-inter; | ||
margin: 0 0 10rem; | ||
} | ||
|
||
.items { | ||
display: flex; | ||
justify-content: space-between; | ||
margin: 0 auto; | ||
width: 70%; | ||
} | ||
|
||
.item { | ||
font-size: 1.5rem; | ||
line-height: 1.2; | ||
|
||
a { | ||
display: inline-block; | ||
// margin: 5px; | ||
text-align: center; | ||
width: 50%; | ||
} | ||
|
||
span { | ||
display: table; | ||
font-weight: 600; | ||
margin: 0 0 10px; | ||
text-align: center; | ||
} | ||
} | ||
} |
Oops, something went wrong.