SUGAM-ARORA / UniCollab

UniCollab is more than just a platform; it's a gateway to a world where students from different universities/colleges converge to collaborate, innovate, and elevate their projects. Imagine a space where ideas flow freely, where knowledge is shared effortlessly, and where learning transcends classrooms. That's UniCollab for you.
https://uni-collab.vercel.app/
MIT License
51 stars 102 forks source link

Feat: Make website SEO friendly #358

Open chaanakyaaM opened 1 week ago

chaanakyaaM commented 1 week ago

Describe the feature

I would like to make the website SEO friendly by adding the appropriate meta tags and keywords.

Add ScreenShots

N/A

Record

github-actions[bot] commented 1 week ago

Thank you for creating this issue! 🎉 @SUGAM-ARORA will look into it as soon as possible. In the meantime, please make sure to provide all the necessary details and context. If you have any questions or additional information, feel free to add them here. Your contributions are highly appreciated! 😊

You can also check our CONTRIBUTE.md for guidelines on contributing to this project.

SUGAM-ARORA commented 1 week ago

@chaanakyaaM Where you will add them?

chaanakyaaM commented 1 week ago

In this way

import React from 'react';
import { Helmet } from 'react-helmet';

const HomePage = () => {
  return (
    <div>
      <Helmet>
        <title>Home Page - My React App</title>
        <meta name="description" content="Welcome to my React.js application!" />
        <meta name="keywords" content="React, SEO" />
      </Helmet>

      <h1>Welcome to My React App</h1>
      <p>This is the homepage of my React.js application.</p>
    </div>
  );
};

export default HomePage;
SUGAM-ARORA commented 1 week ago

@chaanakyaaM Issue assigned to you