1. Chuẩn bị môi trường
Bạn cần cài:
- Node.js (phiên bản LTS mới nhất)
- VS Code
- Trình duyệt Chrome
2. Khởi tạo dự án React + Tailwind
Cách nhanh nhất (Vite + React + Tailwind):
npm create vite@latest my-website --template react
cd my-website
npm install
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p
Cấu hình Tailwind
Mở tailwind.config.js và thêm:
Trong src/index.css:
@tailwind base;
@tailwind components;
@tailwind utilities;
Chạy thử dự án:
npm run dev
3. Cấu trúc dự án React chuẩn SEO 2025
src/
├── components/
├── pages/
├── layouts/
├── seo/
├── assets/
├── App.jsx
└── main.jsx
4. Tạo layout website bằng Tailwind
Ví dụ tạo header + navbar:
export default function Header() {
return (
<header className="bg-white shadow sticky top-0">
<div className="max-w-7xl mx-auto px-4 py-4 flex justify-between items-center">
<h1 className="text-2xl font-bold text-blue-600">MyWebsite</h1>
<nav className="flex gap-6 text-gray-700 font-medium">
<a href="/" className="hover:text-blue-600">Trang chủ</a>
<a href="/about" className="hover:text-blue-600">Giới thiệu</a>
<a href="/blog" className="hover:text-blue-600">Blog</a>
</nav>
</div>
</header>
);
}
5. Tạo Home Page chuẩn UI Tailwind
Ví dụ:
export default function Home() {
return (
<section className="max-w-7xl mx-auto p-6">
<div className="text-center py-20">
<h2 className="text-4xl font-bold text-gray-900">
Làm Website bằng Tailwind + React
</h2>
<p className="mt-4 text-gray-600 max-w-xl mx-auto">
Công nghệ nhẹ – nhanh – tối ưu hóa SEO mạnh mẽ.
</p>
<button className="mt-6 px-6 py-3 bg-blue-600 text-white rounded-xl hover:bg-blue-700">
Bắt đầu ngay
</button>
</div>
</section>
);
}
6. Hướng dẫn SEO cho React (SPA) năm 2025
React SEO yếu, nhưng bạn có thể làm chuẩn bằng cách:
6.1. Tối ưu SEO Onpage
1. Sử dụng React Helmet
Cài đặt:
npm install react-helmet-async
Tạo file SEO:
import { Helmet } from "react-helmet-async";
export default function SEO({ title, description }) {
return (
<Helmet>
<title>{title}</title>
<meta name="description" content={description} />
<meta name="robots" content="index, follow" />
</Helmet>
);
}
Dùng:
<SEO
title="Hướng dẫn làm website bằng Tailwind + React 2025"
description="Tạo website đẹp, nhanh, chuẩn SEO bằng Tailwind CSS kết hợp React."
/>
6.2. Tối ưu tốc độ (Core Web Vitals)
- Dùng lazy loading:
const Home = React.lazy(() => import("./pages/Home"));
- Sử dụng ảnh WebP, AVIF
- Dùng CDN ảnh (Cloudinary, Vercel)
- Minify & Preload Fonts
6.3. Tối ưu Accessibility (A11y)
- Alt text cho ảnh
- Semantic HTML
- Heading h1 -> h6 đúng thứ tự
7. Triển khai (Deploy)
Cách nhanh nhất: Vercel
npm run build
Upload build folder lên Vercel -> hệ thống tự nhận dạng React.
Ý kiến của bạn 0
Chưa có bình luận nào. Hãy là người đầu tiên!