mirror of
https://github.com/Sosokker/B2D-Ventures.git
synced 2025-12-19 05:54:06 +01:00
fix: adjust margin for Carousel component and update Contact link to email
This commit is contained in:
parent
79d5d9615d
commit
dc8448135d
@ -87,7 +87,7 @@ export default async function ProjectDealPage({ params }: { params: { id: number
|
||||
<CarouselNext />
|
||||
</Carousel>
|
||||
|
||||
<Carousel className="w-full ml-1 h-[100px]">
|
||||
<Carousel className="w-full ml-1 h-[100px] mt-5">
|
||||
<CarouselContent className="flex space-x-1">
|
||||
{carouselData.map((item, index) => (
|
||||
<CarouselItem key={index} className="flex">
|
||||
@ -153,7 +153,7 @@ export default async function ProjectDealPage({ params }: { params: { id: number
|
||||
</CardHeader>
|
||||
<CardContent>
|
||||
<div className="prose prose-sm max-w-none">
|
||||
<ReactMarkdown className="text-black dark:text-white">
|
||||
<ReactMarkdown className="text-black dark:text-white [&_*]:text-inherit">
|
||||
{projectData?.project_description || "No pitch available."}
|
||||
</ReactMarkdown>
|
||||
</div>
|
||||
|
||||
@ -21,7 +21,10 @@ export function SiteFooter() {
|
||||
<Link href="/services" className="hover:underline">
|
||||
Services
|
||||
</Link>
|
||||
<Link href="/contact" className="hover:underline">
|
||||
<Link
|
||||
href="mailto:b2d.ventures.contact@gmail.com"
|
||||
className="hover:underline"
|
||||
>
|
||||
Contact
|
||||
</Link>
|
||||
</div>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user