-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathanimation.jsx
More file actions
executable file
·41 lines (37 loc) · 1.54 KB
/
Copy pathanimation.jsx
File metadata and controls
executable file
·41 lines (37 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
'use client';
import Footer from '@/app/components/footer';
import ExploreOther from '@/app/components/ui/exploreOther';
import Content from'@/app/visualizer/stack/implementation/usingLinkedList/content';
import CodeBlock from'@/app/visualizer/stack/implementation/usingLinkedList/codeBlock';
import GoBackButton from "@/app/components/ui/goback";
import BackToTop from "@/app/components/ui/backtotop";
const InfixToPostfixVisualizer = () => {
return (
<div className="min-h-screen max-h-auto bg-gray-100 dark:bg-zinc-950 text-gray-800 dark:text-gray-200">
<main className="container mx-auto px-6 pt-16 pb-4">
{ /* go back block here */}
<div className="mt-10 sm:mt-10">
<GoBackButton />
</div>
{ /* main logic here */}
<h1 className="text-4xl md:text-4xl mt-6 ml-10 font-bold text-left text-gray-900 dark:text-white mb-0">
<span className="text-black dark:text-white">Stack Implementation</span>
</h1>
<div className='bg-black border border-none dark:bg-gray-600 w-100 h-[2px] rounded-xl mt-2 mb-5'></div>
<Content />
<p className="text-lg text-center text-gray-600 dark:text-gray-400 mb-8"></p>
<CodeBlock/>
<ExploreOther
title="Explore other implementation"
links={[
{ text: "Using Array", url: "./usingArray" },
]}
/>
</main>
<div className="bg-gray-700 z-10 h-[1px]"></div>
<BackToTop/>
<Footer />
</div>
);
};
export default InfixToPostfixVisualizer;