diff --git a/noxfile.py b/noxfile.py index a380541..48dd9d4 100644 --- a/noxfile.py +++ b/noxfile.py @@ -31,7 +31,7 @@ def build(session: Session) -> None: session.run("npx", "sass", "src/style.scss", "build/style.css", "--style=compressed") session.log("Copying static files to build directory...") - copytree("assets", "build", dirs_exist_ok=True) + copytree("src/assets", "build", dirs_exist_ok=True) @session() diff --git a/assets/img/background-black-red.jpg b/src/assets/img/background-black-red.jpg similarity index 100% rename from assets/img/background-black-red.jpg rename to src/assets/img/background-black-red.jpg diff --git a/assets/img/background.jpg b/src/assets/img/background.jpg similarity index 100% rename from assets/img/background.jpg rename to src/assets/img/background.jpg diff --git a/assets/img/frog-cwak.png b/src/assets/img/frog-cwak.png similarity index 100% rename from assets/img/frog-cwak.png rename to src/assets/img/frog-cwak.png diff --git a/assets/img/game-footer.png b/src/assets/img/game-footer.png similarity index 100% rename from assets/img/game-footer.png rename to src/assets/img/game-footer.png diff --git a/assets/img/nav-logo.png b/src/assets/img/nav-logo.png similarity index 100% rename from assets/img/nav-logo.png rename to src/assets/img/nav-logo.png diff --git a/assets/img/section-collective-hover.png b/src/assets/img/section-collective-hover.png similarity index 100% rename from assets/img/section-collective-hover.png rename to src/assets/img/section-collective-hover.png diff --git a/assets/img/section-collective.png b/src/assets/img/section-collective.png similarity index 100% rename from assets/img/section-collective.png rename to src/assets/img/section-collective.png diff --git a/assets/img/section-contact-hover.png b/src/assets/img/section-contact-hover.png similarity index 100% rename from assets/img/section-contact-hover.png rename to src/assets/img/section-contact-hover.png diff --git a/assets/img/section-contact.png b/src/assets/img/section-contact.png similarity index 100% rename from assets/img/section-contact.png rename to src/assets/img/section-contact.png diff --git a/assets/img/section-games.png b/src/assets/img/section-games.png similarity index 100% rename from assets/img/section-games.png rename to src/assets/img/section-games.png diff --git a/assets/img/section-news.png b/src/assets/img/section-news.png similarity index 100% rename from assets/img/section-news.png rename to src/assets/img/section-news.png diff --git a/assets/js/index.js b/src/assets/js/index.js similarity index 100% rename from assets/js/index.js rename to src/assets/js/index.js