diff --git a/astro.config.mjs b/astro.config.mjs index bc4153c..dfa97f3 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,5 +1,4 @@ import mdx from "@astrojs/mdx"; -import node from "@astrojs/node"; import react from "@astrojs/react"; import tailwind from "@astrojs/tailwind"; import { defineConfig } from "astro/config"; @@ -37,6 +36,6 @@ export default defineConfig({ optimizeDeps: { exclude: ["@resvg/resvg-js"] } - }, - adapter: node({ mode: "standalone" }) + } + //adapter: node({ mode: "standalone" }) }); diff --git a/src/components/FeedbackForm.astro b/src/components/FeedbackForm.astro deleted file mode 100644 index 3f6e93c..0000000 --- a/src/components/FeedbackForm.astro +++ /dev/null @@ -1,91 +0,0 @@ ---- -import "@/assets/styles/feedback.css"; ---- - -
-
-
-

Share Your Feedback

-

We value your thoughts and suggestions

-
- -
-
Error message goes here
- -
- - -
- -
- - -
- -
- -
-
-
-
- - diff --git a/src/components/surveyForm.astro b/src/components/surveyForm.astro deleted file mode 100644 index dd88017..0000000 --- a/src/components/surveyForm.astro +++ /dev/null @@ -1,193 +0,0 @@ ---- -import type { SurveyData } from "@/types"; -import "@/assets/styles/survey.css"; - -interface Props { - data: SurveyData; -} - -const { data } = Astro.props; ---- - -
-
-
-

{data.surveyTitle}

-

{data.description}

-
- -
-
- { - data.questions.map((question, index) => ( -
-

- {index + 1}. - {question.questionText} -

- - {question.type === "openEnded" ? ( -