Skip to content

Commit

Permalink
docs: redesign project page
Browse files Browse the repository at this point in the history
  • Loading branch information
adalinesimonian committed Jan 21, 2024
1 parent 5be0dd0 commit fef61e4
Show file tree
Hide file tree
Showing 10 changed files with 669 additions and 112 deletions.
8 changes: 8 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
14 changes: 12 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
*
!.gitignore
!index.html
!style.css
!*.html
!*.css
!images
!images/*
!CNAME
!graph-data.json
!graph.js
!.prettierrc
!.editorconfig
!.vscode
!.vscode/*
!LICENCE
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.rulers": [80, 120]
}
15 changes: 15 additions & 0 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
ISC License

Copyright 2023 Adaline Simonian

Permission to use, copy, modify, and/or distribute this software for any purpose
with or without fee is hereby granted, provided that the above copyright notice
and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
THIS SOFTWARE.
47 changes: 47 additions & 0 deletions graph-data.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"nodes": [
"avstand",
"kjensle",
"vedtak",
"blinda",
"sørgja",
"data",
"molda",
"trafikk",
"dialog",
"moglegheit",
"fjære"
],
"links": [
["avstand", "blinda"],
["avstand", "vedtak"],
["kjensle", "vedtak"],
["kjensle", "blinda"],
["kjensle", "data"],
["vedtak", "kjensle"],
["blinda", "avstand"],
["blinda", "kjensle"],
["blinda", "sørgja"],
["sørgja", "blinda"],
["sørgja", "molda"],
["sørgja", "trafikk"],
["data", "kjensle"],
["data", "trafikk"],
["molda", "sørgja"],
["molda", "dialog"],
["molda", "moglegheit"],
["molda", "avstand"],
["trafikk", "sørgja"],
["trafikk", "data"],
["trafikk", "dialog"],
["trafikk", "fjære"],
["dialog", "molda"],
["dialog", "trafikk"],
["dialog", "fjære"],
["dialog", "moglegheit"],
["moglegheit", "molda"],
["moglegheit", "dialog"],
["fjære", "dialog"],
["fjære", "trafikk"]
]
}
Loading

0 comments on commit fef61e4

Please sign in to comment.