Skip to content

Commit

Permalink
style: capitalize Deva (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
msyahrulsp authored Aug 16, 2022
1 parent 47158a4 commit a6923f1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
/>
<meta
name="description"
content="Deva: Blog OSKM ITB 2022 merupakan website yang digunakan untuk mempublish hasil pengumuman dan materi"
content="DEVA: Blog OSKM ITB 2022 merupakan website yang digunakan untuk mempublish hasil pengumuman dan materi"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deva: Blog OSKM ITB 2022</title>
<title>DEVA: Blog OSKM ITB 2022</title>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/About/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import AboutDetail from './AboutDetail';

const About: React.FC<{}> = () => {
const [isOn, toggle] = useToggle();
document.title = 'About - Deva: Blog OSKM ITB 2022';
document.title = 'About - DEVA: Blog OSKM ITB 2022';
return (
<PageTransition>
<div className="relative min-h-content">
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Detailpage/Detailpage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const Detailpage: React.FC<DetailpageProps> = ({
</Box>
);

document.title = `${post!.title} - Deva: Blog OSKM ITB 2022`;
document.title = `${post!.title} - DEVA: Blog OSKM ITB 2022`;

return (
<Flex
Expand Down
2 changes: 1 addition & 1 deletion src/pages/ErrorPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import PostNotFound from './Error/PostNotFound';
import SearchNotFound from './Error/SearchNotFound';

const ErrorPage: React.FC<ErrorProps> = ({ type }) => {
document.title = 'Error - Deva: Blog OSKM ITB 2022';
document.title = 'Error - DEVA: Blog OSKM ITB 2022';

if (type === ErrorTypes.EmptyPost) {
return <EmptyPost />;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Homepage/Homepage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const Homepage: React.FC<{}> = () => {
/>
));

document.title = 'Home - Deva: Blog OSKM ITB 2022';
document.title = 'Home - DEVA: Blog OSKM ITB 2022';

if (posts.length === 0) {
return <ErrorPage message={message} type={ErrorTypes.EmptyPost} />;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Partnerpage/PartnerPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const SponsorSectionTitle = ({ title }: { title: string }) => (
);

const PartnerPage: React.FC<{}> = () => {
document.title = 'Sponsor - Deva: Blog OSKM ITB 2022';
document.title = 'Sponsor - DEVA: Blog OSKM ITB 2022';
// const imageArray: Array<image> = [];
return (
<PageTransition>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Searchpage/Searchpage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const Searchpage: React.FC<{}> = () => {
return <ErrorPage type={ErrorTypes.ServerError} />;
}

document.title = `${query} - Deva: Blog OSKM ITB 2022`;
document.title = `${query} - DEVA: Blog OSKM ITB 2022`;

const renderSearch = (input: PostOrPage[]) => {
if (input.length === 0) {
Expand Down

0 comments on commit a6923f1

Please sign in to comment.