Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Nov 5, 2023
1 parent 80afea2 commit 4e6983c
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 39 deletions.
14 changes: 2 additions & 12 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,18 +87,8 @@ const NebulaApp: AppType<{ session: Session | null }> = ({
<ReactQueryDevtools initialIsOpen={false} />
<Head>
<title>Nebula Planner</title>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/favicon-16x16.png"
/>
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="icon" href="/logoIcon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
Expand Down
5 changes: 1 addition & 4 deletions src/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ class MyDocument extends Document {
content="Say goodbye to the stress and hassle of degree planning and hello to a smooth, organized path towards graduation with Nebula Planner."
/>
<meta property="og:type" content="website" />
<meta
property="og:image"
content="https://planner.utdnebula.com/logoIcon.png"
/>
<meta property="og:image" content="https://planner.utdnebula.com/logoIcon.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:alt" content="Nebula Labs Icon." />
<meta property="og:image:width" content="512" />
Expand Down
6 changes: 1 addition & 5 deletions src/pages/app/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ export default function MiniDrawer() {
return (
<>
<Head>
<link
rel="canonical"
href="https://planner.utdnebula.com/app/home"
key="canonical"
/>
<link rel="canonical" href="https://planner.utdnebula.com/app/home" key="canonical" />
<meta property="og:url" content="https://planner.utdnebula.com/app/home" />
</Head>
<Home />
Expand Down
6 changes: 1 addition & 5 deletions src/pages/app/onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,7 @@ export default function OnboardingPage() {
return (
<>
<Head>
<link
rel="canonical"
href="https://planner.utdnebula.com/app/onboarding"
key="canonical"
/>
<link rel="canonical" href="https://planner.utdnebula.com/app/onboarding" key="canonical" />
<meta property="og:url" content="https://planner.utdnebula.com/app/onboarding" />
</Head>
<div className="relative flex h-screen flex-col items-center justify-center space-y-10 bg-white">
Expand Down
6 changes: 1 addition & 5 deletions src/pages/app/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@ export default function MiniDrawer() {
return (
<>
<Head>
<link
rel="canonical"
href="https://planner.utdnebula.com/app/profile"
key="canonical"
/>
<link rel="canonical" href="https://planner.utdnebula.com/app/profile" key="canonical" />
<meta property="og:url" content="https://planner.utdnebula.com/app/profile" />
</Head>
<ProfilePage isDesktop={true} />
Expand Down
12 changes: 4 additions & 8 deletions src/pages/auth/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,10 @@ export function AuthPage(props: {

return (
<>
<Head>
<link
rel="canonical"
href="https://planner.utdnebula.com/auth/login"
key="canonical"
/>
<meta property="og:url" content="https://planner.utdnebula.com/auth/login" />
</Head>
<Head>
<link rel="canonical" href="https://planner.utdnebula.com/auth/login" key="canonical" />
<meta property="og:url" content="https://planner.utdnebula.com/auth/login" />
</Head>
<div className="relative flex h-screen flex-col items-center justify-center space-y-10 bg-[#ffffff]">
{status !== 'loading' && (
<section className="w-full min-w-[300px] max-w-xl p-5 sm:w-2/3">
Expand Down

0 comments on commit 4e6983c

Please sign in to comment.