Social
diff --git a/apps/web/src/components/hero-button/styles.module.css b/apps/web/src/components/hero-button/styles.module.css
index bdafae79..5df86b85 100644
--- a/apps/web/src/components/hero-button/styles.module.css
+++ b/apps/web/src/components/hero-button/styles.module.css
@@ -24,6 +24,8 @@
.heroButtonBg {
position: absolute;
+ top: 0;
+ left: 0;
width: 100%;
height: 100%;
background-image: linear-gradient(
diff --git a/apps/web/src/components/ui/button.tsx b/apps/web/src/components/ui/button.tsx
index 3d03ddb4..cdbc7ab1 100644
--- a/apps/web/src/components/ui/button.tsx
+++ b/apps/web/src/components/ui/button.tsx
@@ -14,7 +14,7 @@ const buttonVariants = cva(
destructive:
'bg-destructive text-white shadow-xs hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
outline:
- 'border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-input/30 dark:border-input dark:hover:bg-input/50',
+ 'border bg-background shadow-xs hover:bg-accent hover:text-accent-foreground dark:bg-background dark:border-input dark:hover:bg-accent',
secondary:
'bg-secondary text-secondary-foreground shadow-xs hover:bg-secondary/80',
ghost:
diff --git a/apps/web/src/lib/config.ts b/apps/web/src/lib/config.ts
index 812affe7..7b9f8fba 100644
--- a/apps/web/src/lib/config.ts
+++ b/apps/web/src/lib/config.ts
@@ -19,6 +19,7 @@ export const githubUrl = 'https://github.com/transitive-bullshit/agentic'
// TODO: make an agentic-specific calendar for this
export const calendarBookingUrl = 'https://cal.com/travis-fischer/15min'
export const discordUrl = 'https://discord.agentic.so'
+export const emailUrl = 'mailto:travis@agentic.so'
export const keywords = [
'agentic',
diff --git a/docs/contact.mdx b/docs/contact.mdx
index 7c2c23b3..57b9e1a6 100644
--- a/docs/contact.mdx
+++ b/docs/contact.mdx
@@ -2,7 +2,7 @@
title: Contact
---
-Agentic's currently a solo effort by [Travis Fischer](https://x.com/transitive_bs). 👋
+Agentic is currently a solo effort by [Travis Fischer](https://x.com/transitive_bs). 👋
As with MCP itself, Agentic is an active work in progress, so please reach out if you have any questions, feedback, or feature requests.
diff --git a/docs/docs.json b/docs/docs.json
index cbc0e36a..2da53929 100644
--- a/docs/docs.json
+++ b/docs/docs.json
@@ -23,7 +23,7 @@
"links": [
{
"label": "Contact",
- "href": "https://docs.agentic.so/contact",
+ "href": "https://agentic.so/contact",
"icon": "envelope"
}
],
@@ -116,7 +116,7 @@
},
{
"anchor": "Contact",
- "href": "https://docs.agentic.so/contact",
+ "href": "https://agentic.so/contact",
"icon": "envelope"
},
{
diff --git a/docs/inject.js b/docs/inject.js
index beb9f956..103a8523 100644
--- a/docs/inject.js
+++ b/docs/inject.js
@@ -5,14 +5,13 @@ const isSafari =
if (!isServer) {
// Workaround for nav links not being able to point to relative paths
for (const a of document.querySelectorAll(
- 'a[href="https://docs.agentic.so/contact"]'
+ 'a[href="https://agentic.so/contact"]'
)) {
a.removeAttribute('target')
- a.setAttribute('href', '/contact')
}
// document
- // .getElementById('https://docs.agentic.so/contact')
+ // .getElementById('https://agentic.so/contact')
// .querySelector('.lucide-arrow-up-right')
// .classList.add('hidden')
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index c9220e87..0463a6b9 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -100,7 +100,7 @@ catalogs:
specifier: ^2.1.7
version: 2.1.7
'@radix-ui/react-slot':
- specifier: ^1.2.3
+ specifier: 1.2.3
version: 1.2.3
'@radix-ui/react-tabs':
specifier: ^1.1.12
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index b020bf9a..a9aa6842 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -42,7 +42,7 @@ catalog:
'@pmndrs/assets': ^1.7.0
'@radix-ui/react-dropdown-menu': ^2.1.15
'@radix-ui/react-label': ^2.1.7
- '@radix-ui/react-slot': ^1.2.3
+ '@radix-ui/react-slot': 1.2.3
'@radix-ui/react-tabs': ^1.1.12
'@radix-ui/react-tooltip': ^1.2.7
'@react-email/components': ^0.1.1
diff --git a/todo.md b/todo.md
index e13f0c65..7d3afc3b 100644
--- a/todo.md
+++ b/todo.md
@@ -36,6 +36,8 @@
- add ts sdk examples to e2e tests
- consider allowing deployments to specify their proxy secret instead of a single, per-project proxy secret
- fix weird git state and github actions marked as failing
+- fix marketing dark background
+- 404 page
## TODO: Post-MVP