@@ -1,10 +1,10 @@
|
|||||||
---
|
---
|
||||||
import { Dropdown, DropdownItems } from "astro-navbar";
|
import { Dropdown as DropdownContainer, DropdownItems } from "astro-navbar";
|
||||||
const { title, lastItem, children } = Astro.props;
|
const { title, lastItem, children } = Astro.props;
|
||||||
---
|
---
|
||||||
|
|
||||||
<li class="relative">
|
<li class="relative">
|
||||||
<Dropdown class="group">
|
<DropdownContainer class="group">
|
||||||
<button
|
<button
|
||||||
class="flex items-center gap-1 w-full lg:w-auto lg:px-3 py-2 text-gray-600 hover:text-gray-900">
|
class="flex items-center gap-1 w-full lg:w-auto lg:px-3 py-2 text-gray-600 hover:text-gray-900">
|
||||||
<span>{title}</span>
|
<span>{title}</span>
|
||||||
@@ -43,5 +43,5 @@ const { title, lastItem, children } = Astro.props;
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</DropdownItems>
|
</DropdownItems>
|
||||||
</Dropdown>
|
</DropdownContainer>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
---
|
---
|
||||||
import Container from "@components/container.astro";
|
import Container from "@components/container.astro";
|
||||||
import { getFormattedDate } from "@utils/all";
|
import { getFormattedDate } from "@utils/all";
|
||||||
import { log } from "astro/dist/core/logger/core";
|
|
||||||
import Layout from "./Layout.astro";
|
import Layout from "./Layout.astro";
|
||||||
|
|
||||||
const { frontmatter } = Astro.props;
|
const { frontmatter } = Astro.props;
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
---
|
---
|
||||||
import { Icon } from "astro-icon";
|
|
||||||
import Layout from "@layouts/Layout.astro";
|
|
||||||
import Container from "@components/container.astro";
|
import Container from "@components/container.astro";
|
||||||
import Sectionhead from "@components/sectionhead.astro";
|
import Layout from "@layouts/Layout.astro";
|
||||||
import Button from "@components/ui/button.astro";
|
|
||||||
import Contactform from "@components/contactform.astro";
|
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="404 Not Found">
|
<Layout title="404 Not Found">
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
---
|
---
|
||||||
import { Icon } from "astro-icon";
|
import Contactform from "@components/contactform.astro";
|
||||||
import Layout from "@layouts/Layout.astro";
|
|
||||||
import Container from "@components/container.astro";
|
import Container from "@components/container.astro";
|
||||||
import Sectionhead from "@components/sectionhead.astro";
|
import Sectionhead from "@components/sectionhead.astro";
|
||||||
import Button from "@components/ui/button.astro";
|
import Layout from "@layouts/Layout.astro";
|
||||||
import Contactform from "@components/contactform.astro";
|
import { Icon } from "astro-icon";
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Contact">
|
<Layout title="Contact">
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
import Layout from "@layouts/Layout.astro";
|
import Layout from "@layouts/Layout.astro";
|
||||||
import Container from "@components/container.astro";
|
import Container from "@components/container.astro";
|
||||||
import Sectionhead from "@components/sectionhead.astro";
|
import Sectionhead from "@components/sectionhead.astro";
|
||||||
import Pricing from "@components/pricing.astro";
|
import PricingCard from "@components/pricing.astro";
|
||||||
|
|
||||||
const pricing = [
|
const pricing = [
|
||||||
{
|
{
|
||||||
@@ -68,13 +68,13 @@ const pricing = [
|
|||||||
<Container>
|
<Container>
|
||||||
<Sectionhead>
|
<Sectionhead>
|
||||||
<Fragment slot="title">Pricing</Fragment>
|
<Fragment slot="title">Pricing</Fragment>
|
||||||
<Fragment slot="desc"
|
<Fragment slot="desc">
|
||||||
>Simple & Predictable pricing. No Surprises.</Fragment
|
Simple & Predictable pricing. No Surprises.
|
||||||
>
|
</Fragment>
|
||||||
</Sectionhead>
|
</Sectionhead>
|
||||||
|
|
||||||
<div class="grid md:grid-cols-3 gap-10 mx-auto max-w-screen-lg mt-12">
|
<div class="grid md:grid-cols-3 gap-10 mx-auto max-w-screen-lg mt-12">
|
||||||
{pricing.map((item) => <Pricing plan={item} />)}
|
{pricing.map((item) => <PricingCard plan={item} />)}
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|||||||
Reference in New Issue
Block a user