Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion apps/website/src/components/BaseContactForm.astro
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ const { onDark, classNames, formId, formClassNames } = Astro.props;
errorText={formContent.frontmatter.requiredField}
onDark={onDark}
/>
<span class="text-secondary text-xs text-right mt-1 block">
<span
class={classnames("text-xs text-right mt-1 block", {
"text-secondary": !onDark,
"text-neutral-50": onDark,
})}
>
<span id="char-counter">0</span>/1500
</span>
</div>
Expand Down
1 change: 1 addition & 0 deletions apps/website/src/components/vibe-code-mvp/GetInTouch.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import Section from "../Section.astro";
<Section
contentClassName={`${grid_classes} bg-[#5362DBE5]/[0.9] text-white rounded-[48px] max-sm:gap-0`}
className="bg-contrast !pt-34 md:!pt-68"
idx="get-in-touch"
>
<div
class="flex flex-col gap-2 md:gap-4 col-span-6 md:col-span-12 md:px-8 lg:col-span-5 lg:col-start-2 max-md:px-4 lg:px-0"
Expand Down
2 changes: 1 addition & 1 deletion apps/website/src/components/vibe-code-mvp/HowItWorks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const images = import.meta.glob<{ default: ImageMetadata }>(
<div class="flex flex-wrap gap-2.5">
<a
id="book-a-call-action-hero"
href="#get-your-plan-section"
href="#get-in-touch"
class="inline-block bg-crocoder-yellow rounded-md px-[25px] py-4 text-center text-contrast text-base font-medium hover:opacity-90 uppercase w-fit max-h-14"
>
Let's talk
Expand Down
8 changes: 8 additions & 0 deletions apps/website/src/pages/vibe-code-mvp.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
import BookACallForm from "../components/BookACallForm.astro";
import Footer from "../components/footer.astro";
import Navigation from "../components/navigation.astro";
import GetInTouch from "../components/vibe-code-mvp/GetInTouch.astro";
Expand Down Expand Up @@ -26,5 +27,12 @@ const { ogImage = "https://www.crocoder.dev/homepage-metadata-img.png" } =
<HowItWorks />
<WhyWorkWithUs />
<GetInTouch />
<div class="bg-contrast w-full">
<BookACallForm>
<span slot="title">
Build Your Business <span class="text-crocoder-yellow"> With Us </span>
</span>
</BookACallForm>
</div>
<Footer />
</Base>