diff --git a/package-lock.json b/package-lock.json index 548753d..a6f6448 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,6 +8,7 @@ "name": "my-app", "version": "0.1.0", "dependencies": { + "@tailwindcss/container-queries": "^0.1.1", "@types/node": "20.4.4", "@types/react": "18.2.16", "@types/react-dom": "18.2.7", @@ -2646,6 +2647,14 @@ "tslib": "^2.4.0" } }, + "node_modules/@tailwindcss/container-queries": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@tailwindcss/container-queries/-/container-queries-0.1.1.tgz", + "integrity": "sha512-p18dswChx6WnTSaJCSGx6lTmrGzNNvm2FtXmiO6AuA1V4U5REyoqwmT6kgAsIMdjo07QdAfYXHJ4hnMtfHzWgA==", + "peerDependencies": { + "tailwindcss": ">=3.2.0" + } + }, "node_modules/@trysound/sax": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", diff --git a/package.json b/package.json index 01e190e..fc6e842 100644 --- a/package.json +++ b/package.json @@ -9,6 +9,7 @@ "lint": "next lint" }, "dependencies": { + "@tailwindcss/container-queries": "^0.1.1", "@types/node": "20.4.4", "@types/react": "18.2.16", "@types/react-dom": "18.2.7", diff --git a/src/app/blog/[slug]/page.tsx b/src/app/blog/[slug]/page.tsx index 96a5119..ae3d103 100644 --- a/src/app/blog/[slug]/page.tsx +++ b/src/app/blog/[slug]/page.tsx @@ -1,6 +1,4 @@ import CommentComp from '@/components/CommentComp'; -import Footer from '@/components/Footer'; -import Navigation from '@/components/Navigation'; import ReadLikely from '@/components/ReadLikely'; import ShareLink from '@/components/ShareLink'; import { TypographyH1, TypographyH2 } from '@/components/Typography'; @@ -9,8 +7,6 @@ import Image from 'next/image'; export default function BlogDetails({ params }: { params: { slug: string } }) { return ( <> - -
@@ -94,10 +90,8 @@ export default function BlogDetails({ params }: { params: { slug: string } }) { - + {/* */}
- -