Skip to content

Commit

Permalink
fix(homepage): link to projects page instead of the editor (#6023)
Browse files Browse the repository at this point in the history
Change the link in our site to point to `utopia.app/projects` instead of
`utopia.app/p/36ae27be-welcome-to-utopia`
  • Loading branch information
liady authored Jun 26, 2024
1 parent 016058f commit f5b242e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions utopia-remix/app/components/next.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const mainNavigation = [
{ name: 'Discord', href: 'https://discord.gg/NEEnPKCgzC' },
{
name: 'Play with Utopia',
href: 'https://utopia.app/p/36ae27be-welcome-to-utopia',
href: 'https://utopia.app/projects',
primary: true,
},
]
Expand Down Expand Up @@ -216,7 +216,7 @@ export const GhostBrowser = (props: {
)

const contactUsNavigation = [
{ name: 'Play with Utopia', href: 'https://utopia.app/p/36ae27be-welcome-to-utopia' },
{ name: 'Play with Utopia', href: 'https://utopia.app/projects' },
{ name: 'Join our Discord', href: 'https://discord.gg/NEEnPKCgzC' },
{ name: 'Check us on Github', href: 'https://github.com/concrete-utopia/utopia' },
{ name: 'Privacy Policy', href: '/policies#privacy-policy' },
Expand Down
4 changes: 2 additions & 2 deletions website-next/components/contact-us.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { BasicEmailSignup } from './email-signup'
import React, { BasicEmailSignup } from './email-signup'

const navigation = [
{ name: 'Play with Utopia', href: 'https://utopia.app/p/36ae27be-welcome-to-utopia' },
{ name: 'Play with Utopia', href: 'https://utopia.app/projects' },
{ name: 'Join our Discord', href: 'https://discord.gg/NEEnPKCgzC' },
{ name: 'Check us on Github', href: 'https://github.com/concrete-utopia/utopia' },
{ name: 'Privacy Policy', href: '/policies#privacy-policy' },
Expand Down
4 changes: 2 additions & 2 deletions website-next/components/menu.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Fragment } from 'react'
import React, { Fragment } from 'react'
import { Popover, Transition } from '@headlessui/react'
import { MenuIcon, XIcon } from '@heroicons/react/outline'
import { HostedImage } from './hosted-image'
Expand All @@ -14,7 +14,7 @@ const navigation = [
{ name: 'Discord', href: 'https://discord.gg/NEEnPKCgzC' },
{
name: 'Play with Utopia',
href: 'https://utopia.app/p/36ae27be-welcome-to-utopia',
href: 'https://utopia.app/projects',
primary: true,
},
]
Expand Down

0 comments on commit f5b242e

Please sign in to comment.