Add Social Share Component
Add the social share component to the Rules of Inference Playground page.
This commit is contained in:
parent
3817f2d692
commit
6877dee89d
1 changed files with 6 additions and 0 deletions
|
|
@ -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>;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue