diff --git a/13-testimonials-grid-section/src/input.css b/13-testimonials-grid-section/src/input.css new file mode 100644 index 0000000..b5c61c9 --- /dev/null +++ b/13-testimonials-grid-section/src/input.css @@ -0,0 +1,3 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; diff --git a/13-testimonials-grid-section/src/main/resources/templates/index.html b/13-testimonials-grid-section/src/main/resources/templates/index.html index 9e35eb1..66bdc73 100644 --- a/13-testimonials-grid-section/src/main/resources/templates/index.html +++ b/13-testimonials-grid-section/src/main/resources/templates/index.html @@ -4,7 +4,8 @@ - + + Frontend Mentor | [Challenge Name Here] diff --git a/13-testimonials-grid-section/tailwind.config.js b/13-testimonials-grid-section/tailwind.config.js new file mode 100644 index 0000000..089db9a --- /dev/null +++ b/13-testimonials-grid-section/tailwind.config.js @@ -0,0 +1,9 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: ["./src/**/*.html"], + theme: { + extend: {}, + }, + plugins: [], +} +