Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/landing/src/app/docs/api/page.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export const metadata = {
title: 'API',
alternates: {
canonical: '/docs/api',
}
}

# API
Expand Down
3 changes: 3 additions & 0 deletions apps/landing/src/app/docs/installation/page.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export const metadata = {
title: '설치',
alternates: {
canonical: '/docs/installation',
}
}

# 설치
Expand Down
3 changes: 3 additions & 0 deletions apps/landing/src/app/docs/overview/page.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
export const metadata = {
title: '개요',
alternates: {
canonical: '/docs/overview',
}
}

# 개요
Expand Down
4 changes: 4 additions & 0 deletions apps/landing/src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ export const metadata: Metadata = {
type: 'website',
url: 'https://braillify.kr',
},
metadataBase: new URL('https://braillify.kr'),
alternates: {
canonical: '/',
},
}

export default function RootLayout({
Expand Down
7 changes: 7 additions & 0 deletions apps/landing/src/app/team/page.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
import { Box, Flex, Text, VStack } from '@devup-ui/react'
import { Metadata } from 'next'

import TeamMemberCard from '@/components/team/TeamMemberCard'

export const metadata: Metadata = {
alternates: {
canonical: '/team',
},
}

export default function TeamPage() {
return (
<VStack
Expand Down
7 changes: 7 additions & 0 deletions apps/landing/src/app/test-case/page.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
import { Box, Grid, Text, VStack } from '@devup-ui/react'
import { readFile } from 'fs/promises'
import { Metadata } from 'next'

import TestCaseCircle from '@/components/test-case/TestCaseCircle'

export const metadata: Metadata = {
alternates: {
canonical: '/test-case',
},
}

export default async function TestCasePage() {
const [testStatus, ruleMap] = await Promise.all([
readFile('../../test_status.json', 'utf-8').then((data) =>
Expand Down