diff --git a/src/main/java/workshop/Launcher.java b/src/main/java/workshop/Launcher.java new file mode 100644 index 0000000..0f82aeb --- /dev/null +++ b/src/main/java/workshop/Launcher.java @@ -0,0 +1,9 @@ +package workshop; + +import javafx.application.Application; + +public class Launcher { + public static void main(String[] args) { + // TODO: Launch the JavaFX application by calling Application.launch(Main.class) + } +} diff --git a/src/main/java/workshop/Main.java b/src/main/java/workshop/Main.java index 1f433d4..d6cd3fd 100644 --- a/src/main/java/workshop/Main.java +++ b/src/main/java/workshop/Main.java @@ -7,11 +7,7 @@ public class Main extends Application { @Override public void start(Stage stage) throws Exception { // TODO: Load the FXML file using FXMLLoader.load() and get the Parent root - // TODO: Create a Scene with the root (width=750, height=450) and add the stylesheet "/style.css" + // TODO: Create a Scene with the root (width=750, height=450) and add the stylesheet "style.css" // TODO: Set the stage title to "Pricing Plans", set the scene, and call stage.show() } - - public static void main(String[] args) { - // TODO: Launch the JavaFX application by calling launch() - } } diff --git a/src/main/resources/light.css b/src/main/resources/workshop/light.css similarity index 100% rename from src/main/resources/light.css rename to src/main/resources/workshop/light.css diff --git a/src/main/resources/pricing.fxml b/src/main/resources/workshop/pricing.fxml similarity index 93% rename from src/main/resources/pricing.fxml rename to src/main/resources/workshop/pricing.fxml index b54db3b..a9b03f8 100644 --- a/src/main/resources/pricing.fxml +++ b/src/main/resources/workshop/pricing.fxml @@ -17,14 +17,14 @@