Skip to content

Commit

Permalink
Remove boilerplate again
Browse files Browse the repository at this point in the history
  • Loading branch information
a-barwick committed May 14, 2023
1 parent a996c9c commit c848067
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/routes/_marketing+/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { V2_MetaFunction } from '@remix-run/node'

export const meta: V2_MetaFunction = () => [{ title: 'Epic Notes' }]
export const meta: V2_MetaFunction = () => [{ title: 'Alban, a Dad' }]

export default function Index() {
return (
Expand Down
2 changes: 1 addition & 1 deletion app/routes/users+/$username.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function ErrorBoundary() {
export const meta: V2_MetaFunction<typeof loader> = ({ data, params }) => {
const displayName = data?.user.name ?? params.username
return [
{ title: `${displayName} | Epic Notes` },
{ title: `${displayName} | Alban, Dad` },
{
name: 'description',
content: `${displayName} on Epic Notes is not a host or renter yet.`,
Expand Down

0 comments on commit c848067

Please sign in to comment.