Skip to content

Commit

Permalink
chore: update metadata + landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
vignesh-gupta committed Jun 11, 2024
1 parent 8414450 commit ce19945
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions components/landing-page/features-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ const features = [
"Get a clear overview of project status, upcoming deadlines, and team performance at a glance.",
},
{
title: "Resource Management 🚧",
title: "Resource Management ",
description:
"Share documents, images, and other files securely within the platform, keeping all project-related information in one place.",
},
{
title: "Team Communication 🚧",
title: "Team Communication",
description:
"Stay connected with your team members through built-in chat and messaging features.",
},
Expand Down
2 changes: 1 addition & 1 deletion components/landing-page/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const Navbar = () => {
href="/"
>
<Image src="/logo.png" alt="Projectify" width={50} height={40} />
<h1>Projectify</h1>
<h1 className="hidden sm:block">Projectify</h1>
</Link>
<div className="ml-auto flex items-center gap-4">
<nav className="md:flex items-center gap-4 sm:gap-6 hidden">
Expand Down
2 changes: 1 addition & 1 deletion components/loading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const Loading = () => {
width={100}
height={100}
priority={true}
className="animate-pulse duration-700"
className="animate-pulse duration-1000"
/>
</div>
);
Expand Down
16 changes: 12 additions & 4 deletions lib/utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type ClassValue, clsx } from "clsx";
import { clsx, type ClassValue } from "clsx";
import {
FileBox,
Layout,
Expand All @@ -23,7 +23,7 @@ type MetaTagProps = {
export function constructMetaTags({
SITE_URL = "https://projectify.vigneshgupta.tech/",
description = "Struggling to stay organized and meet deadlines? Projectify is the ultimate free project management tool for you! Boost your productivity and achieve your goals effortlessly with our intuitive features. Manage tasks, deadlines, resources, and collaborate seamlessly with your team. Sign up today and experience the difference!",
title = "Projectify - Your projects, simplified",
title = "Projectify - Manage your projects effortlessly!",
keywords = [],
}: MetaTagProps): Metadata {
return {
Expand All @@ -34,12 +34,20 @@ export function constructMetaTags({
title,
description,
creator: "@VighneshGupta9",
images: "/thumbnail.png",
images: {
url: "/thumbnail.png",
width: "100%",
height: "auto",
alt: title,
},
},
openGraph: {
title,
description,
images: "/thumbnail.png",
images: {
url: "/thumbnail.png",
alt: title,
},
type: "website",
url: SITE_URL,
},
Expand Down

0 comments on commit ce19945

Please sign in to comment.