Skip to content

Commit

Permalink
Merge pull request #64 from kloudlite/features/design
Browse files Browse the repository at this point in the history
Website prettier fixes
  • Loading branch information
tulsiojha authored Jan 3, 2024
2 parents 4a8de59 + 4652582 commit 6dc7281
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/apps/devdoc/app/layout/theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function GitTimestamp({ timestamp }: { timestamp: Date }) {
const Main = ({ children, pageOpts }: NextraThemeLayoutProps) => {
const { title, frontMatter, pageMap, headings } = pageOpts;
console.log(pageOpts);

const { state } = useMenu();

useEffect(() => {
Expand Down Expand Up @@ -78,7 +78,7 @@ const Main = ({ children, pageOpts }: NextraThemeLayoutProps) => {
return (
<div className="bg-surface-basic-subdued min-h-screen antialiased">
<Head>
<title>{title === "Index" ? config.siteTitle : title}</title>
<title>{title === 'Index' ? config.siteTitle : title}</title>
<meta name="og:image" content={frontMatter.image} />
<link rel="shortcut icon" href="/favicon.ico" />
<link
Expand Down
2 changes: 1 addition & 1 deletion src/apps/devdoc/app/utils/config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const BrandMenu = ({ className }: { className?: string }) => {
};

export default {
siteTitle:"Kloudlite",
siteTitle: 'Kloudlite',
logo: (
<Link href="/">
<div className="hidden md:block md:w-[284px]">
Expand Down
2 changes: 1 addition & 1 deletion src/apps/devdoc/app/utils/use-config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from 'react';

export interface IConfig {
siteTitle?:string;
siteTitle?: string;
logo?: ReactNode;
footer?:
| {
Expand Down

0 comments on commit 6dc7281

Please sign in to comment.