Skip to content

Commit

Permalink
fix: do not overwrite page description meta tag
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobuolys committed Feb 7, 2024
1 parent 4aa71f9 commit 7fd4c62
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 25 deletions.
24 changes: 0 additions & 24 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,6 @@ const config = {
tagline:
"Mangirdas Kazlauskas personal blog about Flutter, Dart, and tech in general.",
headTags: [
{
tagName: "meta",
attributes: {
name: "description",
content:
"Mangirdas Kazlauskas is the first Google Developer Expert for Flutter & Dart technlogies in Lithuania, who crafts high-performance cross-platform apps & frameworks using a product-centric approach. He actively shares his expertise through articles, YouTube videos, and engaging conference talks, empowering businesses and the Flutter community to excel in the digital world. Explore his work and see how he can help you achieve your goals!",
},
},
{
tagName: "meta",
attributes: {
property: "og:description",
content:
"Mangirdas Kazlauskas is the first Google Developer Expert for Flutter & Dart technlogies in Lithuania, who crafts high-performance cross-platform apps & frameworks using a product-centric approach. He actively shares his expertise through articles, YouTube videos, and engaging conference talks, empowering businesses and the Flutter community to excel in the digital world. Explore his work and see how he can help you achieve your goals!",
},
},
{
tagName: "meta",
attributes: {
property: "twitter:description",
content:
"Mangirdas Kazlauskas is the first Google Developer Expert for Flutter & Dart technlogies in Lithuania, who crafts high-performance cross-platform apps & frameworks using a product-centric approach. He actively shares his expertise through articles, YouTube videos, and engaging conference talks, empowering businesses and the Flutter community to excel in the digital world. Explore his work and see how he can help you achieve your goals!",
},
},
{
tagName: "meta",
attributes: {
Expand Down
5 changes: 4 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,11 @@ const projects = [
];

export default function Home() {
const description =
"Mangirdas Kazlauskas is the first Google Developer Expert for Flutter & Dart technlogies in Lithuania, who crafts high-performance cross-platform apps & frameworks using a product-centric approach. He actively shares his expertise through articles, YouTube videos, and engaging conference talks, empowering businesses and the Flutter community to excel in the digital world. Explore his work and see how he can help you achieve your goals!";

return (
<Layout>
<Layout description={description}>
<main className="container">
<HeroBanner />
<ContentSection
Expand Down

0 comments on commit 7fd4c62

Please sign in to comment.