Add Social Share Component

Add the social share component to the Rules of Inference Playground page.
This commit is contained in:
gpt-engineer-app[bot] 2025-08-11 11:33:08 +00:00
parent 3817f2d692
commit 6877dee89d

View file

@ -3,6 +3,7 @@ import { Link } from "react-router-dom";
import { Search } from "lucide-react"; import { Search } from "lucide-react";
import Layout from "@/components/Layout"; import Layout from "@/components/Layout";
import InteractiveCard from "@/components/InteractiveCard"; import InteractiveCard from "@/components/InteractiveCard";
import SocialShare from "@/components/SocialShare";
import BinaryNumberGame from "@/components/BinaryNumberGame"; import BinaryNumberGame from "@/components/BinaryNumberGame";
import TernaryNumberGame from "@/components/TernaryNumberGame"; import TernaryNumberGame from "@/components/TernaryNumberGame";
import BalancedTernaryGame from "@/components/BalancedTernaryGame"; import BalancedTernaryGame from "@/components/BalancedTernaryGame";
@ -80,6 +81,11 @@ const Foundations = () => {
</div> </div>
<InteractiveComponent /> <InteractiveComponent />
<SocialShare
title={`${selectedInteractive.title} - Interactive Learning`}
description={selectedInteractive.description}
url={`https://lovable.dev${selectedInteractive.greenScreenPath}`}
/>
</div> </div>
</div>; </div>;
} }