首頁 >web前端 >js教程 >使用 React 和 TailwindCSS 重新建立 Interswitch 主頁。

使用 React 和 TailwindCSS 重新建立 Interswitch 主頁。

Susan Sarandon
Susan Sarandon原創
2025-01-14 22:38:44821瀏覽

Recreating the Interswitch Homepage with React and TailwindCSS.

簡介

重新創建一個現代的、具有視覺吸引力的登陸頁面始終是一項令人興奮的挑戰。本週,我專注於使用 React 和 TailwindCSS 建立 Interswitch 主頁的副本。本文提供了該過程的技術演練,從專案設定到實現可重複使用元件和樣式。以下是我的處理方法:

使用 Vite 設定項目

Vite 因其極快的建置時間和簡單性而成為我的 React 專案首選工具。設定過程涉及:

npm create vite@latest interswitch-clone --template react
cd interswitch-clone
npm install

開發伺服器運作後,我就可以開始編碼了。

結構化組件

將主頁分解為可重複使用的元件對於可維護性和可擴展性至關重要。以下是我實現的幾個關鍵元件。

導覽列組件

import { useState } from "react";
import { FaBars, FaTimes } from "react-icons/fa";
import { FiChevronDown } from "react-icons/fi";

const Navbar = () => {
  const [isOpen, setIsOpen] = useState(false);
  const [dropdownOpen, setDropdownOpen] = useState(false);

  const navLinks = [
    { title: "About Us", hasDropdown: true },
    { title: "What We Do", hasDropdown: true },
    { title: "Financial Inclusion", hasDropdown: false },
    { title: "Corporate Responsibility", hasDropdown: false },
    { title: "News & Insights", hasDropdown: false },
  ];

export default Navbar;

統計組件

const Stats = () => {
  return (
    <div className="bg-blue-50 py-12">
      <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div className="flex flex-col gap-8">
          <div className="flex flex-col md:flex-row items-start gap-8">
            <h2 className="text-3xl md:text-4xl font-semibold text-gray-900 flex-1">
              Pushing the boundaries of innovation to deliver payment solutions that enable commerce across Africa
            </h2>
            <div className="flex-1 flex flex-col gap-4">
              <p className="text-xl text-gray-700">
                Bespoke payment solutions for your modern lifestyle, business collections, disbursements, and payment processing.
              </p>
              <button className="bg-blue-950 text-white px-6 py-3 rounded-md hover:bg-blue-900 transition w-fit">
                Learn More
              </button>
            </div>
          </div>
export default Stats;

使用 TailwindCSS 進行樣式

TailwindCSS 讓組件的樣式變得無縫。透過利用實用程式類,我可以專注於功能而無需編寫自訂 CSS。例如,下面的英雄部分使用 Tailwind 的漸變和排版實用程式來創建引人注目的設計。

const Hero = () => {
  return (
    <div className="text-blue-950 pt-6 relative">
      <div className="max-w-6xl mx-auto px-4 sm:px-6 lg:px-8">
        <div className="grid md:grid-cols-2 gap-12 items-center">
          <div>
            <h1 className="text-2xl md:text-7xl mb-6 mt-16 font- text-blue-950">
              The Gateway To Africa&apos;s Payment Ecosystem
            </h1>
            <p className="text-xl md:text-xl mb-8 text-black-200">
              We create and sustain a payment ecosystem that helps 
  commmerce evolve, businesses grow and individuals thrive.
            </p>
          </div>
       </div>
     </div>
  </div>


export default Hero;

重點

  1. 元件化:將 UI 分解為可重複使用的元件,確保更好的可維護性。

  2. TailwindCSS:實用至上的方法使樣式直觀且高效。

  3. Vite:其快速建置時間改善了開發體驗。

結論

重新建立 Interswitch 主頁是一次有益的經歷,它鞏固了我對 React 和 TailwindCSS 的理解。透過利用現代工具和最佳實踐,我建立了一個可擴展且視覺吸引力的登陸頁面。如果您正在從事類似的項目或有疑問,請在評論中與我們聯繫!

以上是使用 React 和 TailwindCSS 重新建立 Interswitch 主頁。的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn