forked from nsbradford/TalkFormAI
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
de032d2
commit 9d4a099
Showing
3 changed files
with
41 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -61,15 +61,14 @@ export default function NavBar2() { | |
]; | ||
|
||
const navigation = [ | ||
// { name: 'Create', href: '/forms/new', current: false }, | ||
{ | ||
name: 'About', | ||
href: '/about', | ||
href: '/contact', | ||
current: false, | ||
}, | ||
{ | ||
name: 'Contact', | ||
href: 'mailto:[email protected],[email protected]', | ||
href: '/contact', | ||
current: false, | ||
}, | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import NavBar2 from "@/components/home/NavBar2"; | ||
import Team from "@/components/landing/Team"; | ||
import Page from "@/components/layout/Page"; | ||
|
||
const teamMembers = [ | ||
{ | ||
name: 'Nick Bradford', | ||
image: 'https://avatars.githubusercontent.com/u/6633811', | ||
subtitle: 'Building LLM agents', | ||
website: 'nsbradford.com', | ||
socials: { | ||
twitter: 'https://twitter.com/n_s_bradford', | ||
linkedIn: 'https://linkedin.com/in/nsbradford', | ||
github: 'https://github.com/nsbradford', | ||
}, | ||
}, | ||
{ | ||
name: 'Hunter Brooks', | ||
subtitle: 'Building virtual teammates for developers', | ||
website: 'bitbuilder.ai', | ||
image: 'https://avatars.githubusercontent.com/u/24214708', | ||
socials: { | ||
twitter: 'https://twitter.com/HunterFromNYC', | ||
linkedIn: 'https://linkedin.com/in/seanhunterbrooks', | ||
github: 'https://github.com/hbrooks', | ||
}, | ||
}, | ||
]; | ||
|
||
export default function contact() { | ||
return <> | ||
<Page pageTitle="Contact the team" disableWarning={true}> | ||
<Team members={teamMembers} /> | ||
</Page> | ||
</>; | ||
} |