-
+
\ No newline at end of file
diff --git a/src/components/widgets/BasicFAQs.astro b/src/components/widgets/BasicFAQs.astro
deleted file mode 100644
index cb4db4b..0000000
--- a/src/components/widgets/BasicFAQs.astro
+++ /dev/null
@@ -1,122 +0,0 @@
----
-import { Icon } from "astro-icon";
-const {} = Astro.props;
----
-
-
-
-
-
- Frequently Asked Questions
-
-
-
-
-
-
-
-
-
- What do I need to start?
-
-
- Space, the final frontier. These are the voyages of the Starship
- Enterprise. Its five-year mission: to explore strange new worlds.
-
-
- Many say exploration is part of our destiny, but itβs actually our
- duty to future generations.
-
-
-
-
-
- How to install the Astro + Tailwind CSS template?
-
-
- Well, the way they make shows is, they make one show. That show's
- called a pilot.
-
-
- Then they show that show to the people who make shows, and on the
- strength of that one show they decide if they're going to make more
- shows. Some pilots get picked and become television programs.Some
- don't, become nothing. She starred in one of the ones that became
- nothing.
-
-
-
-
-
- What's something that you completely don't understand?
-
-
- A flower in my garden, a mystery in my panties. Heart attack never
- stopped old Big Bear. I didn't even know we were calling him Big
- Bear.
-
-
-
-
-
-
-
- What's an example of when you changed your mind?
-
-
- Michael Knight a young loner on a crusade to champion the cause of
- the innocent. The helpless. The powerless in a world of criminals
- who operate above the law. Here he comes Here comes Speed Racer.
- He's a demon on wheels.
-
-
-
-
-
- What is something that you would really like to try again?
-
-
- A business big enough that it could be listed on the NASDAQ goes
- belly up. Disappears!
-
-
- It ceases to exist without me. No, you clearly don't know who you're
- talking to, so let me clue you in.
-
-
-
-
-
- If you could only ask one question to each person you meet, what would
- that question be?
-
-
- This is not about revenge. This is about justice. A lot of things
- can change in twelve years, Admiral. Well, that's certainly good to
- know. About four years. I got tired of hearing how young I looked.
-
-
-
-
-
-
diff --git a/src/components/widgets/BasicFeatures.astro b/src/components/widgets/BasicFeatures.astro
index 20f7fe2..c676822 100644
--- a/src/components/widgets/BasicFeatures.astro
+++ b/src/components/widgets/BasicFeatures.astro
@@ -1,114 +1,73 @@
---
import { Icon } from "astro-icon";
-const {} = Astro.props;
+const { } = Astro.props;
+
+const items = [
+ {
+ title: "Headers",
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
+ icon: "flat-color-icons:home"
+ },
+ {
+ title: "Footers",
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
+ icon: "flat-color-icons:faq"
+ },
+ {
+ title: "Features",
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
+ icon: "flat-color-icons:video-projector"
+ },
+ {
+ title: "Call-to-Action",
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
+ icon: "flat-color-icons:video-projector"
+ },
+ {
+ title: "Pricing",
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
+ icon: "flat-color-icons:calculator"
+ },
+ {
+ title: "Testimonial",
+ description: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
+ icon: "flat-color-icons:voice-presentation"
+ }
+]
---
-
+
-
+
Components
-
+
Most used widgets
-
+
Provides frequently used components for building websites using
Tailwind CSS
-
+
\ No newline at end of file
diff --git a/src/components/widgets/FAQs.astro b/src/components/widgets/FAQs.astro
new file mode 100644
index 0000000..7d497e7
--- /dev/null
+++ b/src/components/widgets/FAQs.astro
@@ -0,0 +1,73 @@
+---
+import { Icon } from "astro-icon";
+const { } = Astro.props;
+
+const items = [
+ [
+ {
+ question: "What do I need to start?",
+ answer: `Space, the final frontier. These are the voyages of the Starship Enterprise. Its five-year mission: to explore strange new worlds.
+
+ Many say exploration is part of our destiny, but itβs actually our duty to future generations.`,
+ },
+ {
+ question: "How to install the Astro + Tailwind CSS template?",
+ answer: `Well, the way they make shows is, they make one show. That show's called a pilot.
+
+ Then they show that show to the people who make shows, and on the strength of that one show they decide if they're going to make more shows. Some pilots get picked and become television programs. Some don't, become nothing. She starred in one of the ones that became nothing.`,
+ },
+ {
+ question: "What's something that you completely don't understand?",
+ answer: `A flower in my garden, a mystery in my panties. Heart attack never stopped old Big Bear. I didn't even know we were calling him Big Bear.`,
+ },
+ ],
+ [
+ {
+ question: "What's an example of when you changed your mind?",
+ answer: `Michael Knight a young loner on a crusade to champion the cause of the innocent. The helpless. The powerless in a world of criminals who operate above the law. Here he comes Here comes Speed Racer. He's a demon on wheels.`,
+ },
+ {
+ question: "What is something that you would really like to try again?",
+ answer: `A business big enough that it could be listed on the NASDAQ goes belly up. Disappears!
+
+ It ceases to exist without me. No, you clearly don't know who you're talking to, so let me clue you in.`,
+ },
+ {
+ question:
+ "If you could only ask one question to each person you meet, what would that question be?",
+ answer: `This is not about revenge. This is about justice. A lot of things can change in twelve years, Admiral. Well, that's certainly good to know. About four years. I got tired of hearing how young I looked.`,
+ },
+ ],
+];
+---
+
+