File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Head from 'next/head'
2
2
import { useRouter } from 'next/router'
3
3
4
4
export default function Meta ( ) {
5
- const baseUrl = 'https://beta. coderplex.org'
5
+ const baseUrl = 'https://coderplex.org'
6
6
const router = useRouter ( )
7
7
return (
8
8
< Head >
Original file line number Diff line number Diff line change 1
1
import Head from 'next/head'
2
2
3
3
export default function Title ( {
4
- suffix = 'Coderplex' ,
4
+ suffix = 'Coderplex Community ' ,
5
5
children,
6
6
} : {
7
7
suffix ?: string
8
8
children : string
9
9
} ) {
10
- let title = children ? `${ children } - ` + suffix : suffix
10
+ let title = children ? `${ children } | ` + suffix : suffix
11
11
12
12
return (
13
13
< Head >
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ function MyApp({ Component, pageProps }: AppProps) {
42
42
const description =
43
43
meta . metaDescription ||
44
44
meta . description ||
45
- "We're a non-profit startup on a mission to improve the state of tech across India"
45
+ 'Achieve your goals with a community of passionate self-learners by joining the Coderplex Community'
46
46
47
47
return (
48
48
< ThemeProvider
@@ -52,7 +52,7 @@ function MyApp({ Component, pageProps }: AppProps) {
52
52
>
53
53
< QueryClientProvider client = { queryClient } >
54
54
< Provider session = { pageProps . session } >
55
- < Title suffix = "Coderplex" > { meta . metaTitle || meta . title } </ Title >
55
+ < Title > { meta . metaTitle || meta . title } </ Title >
56
56
< Description > { description } </ Description >
57
57
< Meta />
58
58
< Layout { ...layoutProps } >
Original file line number Diff line number Diff line change 1
- import { GoalType , HomePageFeed } from '@/components'
1
+ import { GoalType , HomePageFeed , Title } from '@/components'
2
2
import { useSession } from 'next-auth/client'
3
3
import { useQuery } from 'react-query'
4
4
import { User } from './members'
@@ -55,6 +55,7 @@ export default function Home() {
55
55
56
56
return (
57
57
< >
58
+ < Title > Learn. Code. Collaborate.</ Title >
58
59
< HomePageFeed
59
60
updates = { isLoading ? [ ] : data . updates }
60
61
showGoal = { Boolean (
You can’t perform that action at this time.
0 commit comments