Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion front-end/src/components/Centre.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ function Centre() {
</div>
</section>

<section className="relative py-16 overflow-hidden">
<section id="how-to-get-started" className="relative py-16 overflow-hidden">
<div className="relative container mx-auto px-4">
<div className="max-w-3xl mx-auto text-center">
<h2
Expand Down
14 changes: 10 additions & 4 deletions front-end/src/pages/About.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { useState, useEffect } from "react";
import { Heart, Users, Sparkles, BookOpen, ArrowRight } from "lucide-react";

import { Link } from "react-router-dom";

import TidioChat from "../components/Tidio";


const About = () => {
const [isVisible, setIsVisible] = useState(false);
const [activeTab, setActiveTab] = useState("mission");
Expand Down Expand Up @@ -222,10 +226,12 @@ const About = () => {
<p className="text-xl mb-8 opacity-90">
Join our community of writers and readers today.
</p>
<button className="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold flex items-center gap-2 mx-auto hover:bg-blue-50 transition-colors duration-300">
Get Started
<ArrowRight className="w-5 h-5" />
</button>
<Link to="/#how-to-get-started">
<button className="bg-white text-blue-600 px-8 py-3 rounded-lg font-semibold flex items-center gap-2 mx-auto hover:bg-blue-50 transition-colors duration-300">
Get Started
<ArrowRight className="w-5 h-5" />
</button>
</Link>
</div>
</div>
</div>
Expand Down