diff --git a/apps/vdn-static/src/App.vue b/apps/vdn-static/src/App.vue index 371ef2a..6fedc9b 100644 --- a/apps/vdn-static/src/App.vue +++ b/apps/vdn-static/src/App.vue @@ -2,6 +2,7 @@ import "./assets/style.scss"; import { ref, type Ref } from "vue"; import { SAMPLE } from "@repo/common/sample"; +import LocalePicker from "./components/organisms/LocalePicker.vue"; const burgerOpen: Ref = ref(false); @@ -45,6 +46,7 @@ const toggleBurger = (): void => { {{ SAMPLE }} + diff --git a/apps/vdn-static/src/components/organisms/LocalePicker.vue b/apps/vdn-static/src/components/organisms/LocalePicker.vue new file mode 100644 index 0000000..d6d5aa6 --- /dev/null +++ b/apps/vdn-static/src/components/organisms/LocalePicker.vue @@ -0,0 +1,43 @@ + + + diff --git a/apps/vdn-static/src/components/pages/HomePage.vue b/apps/vdn-static/src/components/pages/HomePage.vue index ff642d6..6c4cac9 100644 --- a/apps/vdn-static/src/components/pages/HomePage.vue +++ b/apps/vdn-static/src/components/pages/HomePage.vue @@ -1,25 +1,9 @@