diff --git a/apps/web/public/dots-dark.png b/apps/web/public/dots-dark.png new file mode 100644 index 00000000..70d07b4f Binary files /dev/null and b/apps/web/public/dots-dark.png differ diff --git a/apps/web/public/dots-light.png b/apps/web/public/dots-light.png new file mode 100644 index 00000000..55c8838a Binary files /dev/null and b/apps/web/public/dots-light.png differ diff --git a/apps/web/src/app/contact/page.tsx b/apps/web/src/app/contact/page.tsx new file mode 100644 index 00000000..1365d571 --- /dev/null +++ b/apps/web/src/app/contact/page.tsx @@ -0,0 +1,58 @@ +import Link from 'next/link' + +import { DotsSection } from '@/components/dots-section' +import { HeroButton } from '@/components/hero-button' +import { PageContainer } from '@/components/page-container' +import { Button } from '@/components/ui/button' +import { calendarBookingUrl, emailUrl, twitterUrl } from '@/lib/config' + +export default function AboutPage() { + return ( + +

+ Contact +

+ +
+

+ Agentic is currently a solo effort by{' '} + + Travis Fischer + + . 👋 +

+ +

+ As with MCP itself, Agentic is an active work in progress, so please + reach out if you have any questions, feedback, or feature requests. +

+
+ + {/* CTA section */} + +
+ + + DM me on Twitter / X + + + + + + +
+
+
+ ) +} diff --git a/apps/web/src/app/globals.css b/apps/web/src/app/globals.css index 72c3f328..b5f30a1a 100644 --- a/apps/web/src/app/globals.css +++ b/apps/web/src/app/globals.css @@ -139,7 +139,6 @@ body { } a { - color: inherit; text-decoration: none; } diff --git a/apps/web/src/app/publishing/page.tsx b/apps/web/src/app/publishing/page.tsx index 01add8b8..364dda56 100644 --- a/apps/web/src/app/publishing/page.tsx +++ b/apps/web/src/app/publishing/page.tsx @@ -125,7 +125,7 @@ export default function PublishingMCPsPage() { {/* CTA section */} -
+

Deploy Your MCP Today

diff --git a/apps/web/src/components/dots-section.tsx b/apps/web/src/components/dots-section.tsx index ea6f1547..d7234b9a 100644 --- a/apps/web/src/components/dots-section.tsx +++ b/apps/web/src/components/dots-section.tsx @@ -9,9 +9,7 @@ export function DotsSection({ }) { return (
-
- -
+
{children}
diff --git a/apps/web/src/components/footer/index.tsx b/apps/web/src/components/footer/index.tsx index cc8eab0c..56429a4c 100644 --- a/apps/web/src/components/footer/index.tsx +++ b/apps/web/src/components/footer/index.tsx @@ -10,9 +10,9 @@ import { DynamicFooter } from './dynamic' export function Footer() { return (