diff --git a/src/data/Data.jsx b/src/data/Data.jsx index 6444aed..22616d8 100644 --- a/src/data/Data.jsx +++ b/src/data/Data.jsx @@ -2,14 +2,14 @@ export const ReactData = [ { imageURL: "https://res.cloudinary.com/dadobos/image/upload/v1673023170/web/uxfuyzap5kbs1si34g29.png", - title: "React Shop", + title: "Shop", description: "", url: "https://dadobos.github.io/react-shop/", }, { imageURL: "https://res.cloudinary.com/dadobos/image/upload/v1685729092/web/tzoxavfsfa44z2o9wrgi.png", - title: "React Quiz App", + title: "Quiz App", description: "", url: "https://dadobos.github.io/react-quiz-app/", }, @@ -92,3 +92,13 @@ export const CSSData = [ url: "https://codepen.io/diaid/full/xxJRGMB", }, ]; + +export const JSData = [ + { + imageURL: + "https://res.cloudinary.com/dadobos/image/upload/v1761648607/web/ADOSIanaslkdfOASadkn.png", + title: "Vanilla TS/JS Carousel", + description: "", + url: "https://codepen.io/diaid/pen/GgoGwva", + }, +]; diff --git a/src/lang/en.json b/src/lang/en.json index ec4f505..e4f9b44 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -4,6 +4,7 @@ "navigation.best-practices": "Best Practices", "navigation.blog": "Blog", "navigation.about": "About", + "about.description.line1": "Simple, better.", "blog.pantone.title": "Exploring Pantone Colors: A Journey Through Shades and Hues", "blog.pantone.description.line1": "A Pantone color is a standardized, proprietary color created by the Pantone company, which assigns a unique code to each color. These colors are used in various industries to ensure color consistency across different materials and locations, as they provide a shared language for specifying and reproducing colors accurately. Pantone colors are often more vibrant and consistent than colors created with the standard CMYK or RGB color models.", diff --git a/src/lang/nl.json b/src/lang/nl.json index 4118eae..da0741a 100644 --- a/src/lang/nl.json +++ b/src/lang/nl.json @@ -4,6 +4,7 @@ "navigation.best-practices": "Beste praktijken", "navigation.blog": "Blog", "navigation.about": "Over", + "about.description.line1": "Eenvoudig, beter.", "blog.pantone.title": "Pantone-kleuren verkennen: een reis door tinten en nuances", "blog.pantone.description.line1": "Een Pantone-kleur is een gestandaardiseerde, propriƫtaire kleur die is ontwikkeld door het bedrijf Pantone, dat elke kleur een unieke code toekent. Deze kleuren worden in diverse sectoren gebruikt om kleurconsistentie te waarborgen over verschillende materialen en locaties, omdat ze een gemeenschappelijke taal bieden voor het nauwkeurig specificeren en reproduceren van kleuren. Pantone-kleuren zijn vaak levendiger en consistenter dan kleuren die met de standaard CMYK- of RGB-kleurmodellen worden gemaakt.", diff --git a/src/pages/about/About.jsx b/src/pages/about/About.jsx index acb6ec9..3da462b 100644 --- a/src/pages/about/About.jsx +++ b/src/pages/about/About.jsx @@ -2,8 +2,11 @@ import React from "react"; import { Container, Grid2, Typography, Link } from "@mui/material"; import { useTheme } from "@mui/material/styles"; +import { useIntl } from "react-intl"; + const About = () => { const theme = useTheme(); + const t = useIntl(); return ( @@ -50,8 +53,10 @@ const About = () => { - Characterized by the desire of understanding and implementing - technological innovations. + {t.formatMessage({ + id: "about.description.line1", + defaultMessage: "Simple, better.", + })} diff --git a/src/pages/best-practices/BestPractices.jsx b/src/pages/best-practices/BestPractices.jsx index fbe7e88..da77f3a 100644 --- a/src/pages/best-practices/BestPractices.jsx +++ b/src/pages/best-practices/BestPractices.jsx @@ -1,9 +1,14 @@ import React from "react"; -import { CSSData } from "data/Data"; +import { CSSData, JSData } from "data/Data"; import MainAccordion from "components/main-accordion/MainAccordion"; const BestPractices = () => { - return ; + return ( + <> + + + + ); }; export default BestPractices;