-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE]: Dynamic Page Titles for Consistency #538
Comments
To reduce notifications, issues are locked. Your issue will be unlock when we will add label as |
@s2sharpit how will you update page title dynamically? Please tell me more with one example. |
To update the page title dynamically in Next.js, we can use the For the homepage, we want the title to be set to 'Vibey'. However, on other pages, we'll follow the format Here's an example of how we can achieve this: import Head from 'next/head';
function IndexPage() {
return (
<div>
<Head>
<title>Vibey</title>
</Head>
<p>Hello world!</p>
</div>
);
}
export default IndexPage; |
Assigned @s2sharpit |
Detailed description
Currently, the homepage title is set as "Vibey," but when navigating to other pages, the title remains the same, lacking the necessary context. To enhance user experience and maintain consistency, it would be beneficial to dynamically update the page titles across the website.
Context
Benefits:
Possible implementation
No response
Additional information
Let's work together to enhance the website's usability and branding by implementing this simple yet effective improvement.
Code of Conduct
The text was updated successfully, but these errors were encountered: