-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathanimation.jsx
More file actions
executable file
·39 lines (35 loc) · 1.52 KB
/
Copy pathanimation.jsx
File metadata and controls
executable file
·39 lines (35 loc) · 1.52 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
"use client";
import Footer from "@/app/components/footer";
import ExploreOther from "@/app/components/ui/exploreOther";
import Content from "@/app/visualizer/queue/implementation/array/content";
import CodeBlock from "@/app/visualizer/queue/implementation/array/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">Queue Implementation Using Array</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 Linked List", url: "./linkedList" }]}
/>
</main>
<div className="bg-gray-700 z-10 h-[1px]"></div>
<BackToTop />
<Footer />
</div>
);
};
export default InfixToPostfixVisualizer;