Notus NextJS Tabs
Dynamic navigation component with menu items and content. The dynamic part of them is made using Nextjs and the styles are done using Tailwind CSS.
Text
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
import React from "react";
const Tabs = () => {
const [openTab, setOpenTab] = React.useState(1);
return (
<>
<div className="flex flex-wrap">
<div className="w-full">
<ul
className="flex mb-0 list-none flex-wrap pt-3 pb-4 flex-row"
role="tablist"
>
<li className="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a
className={
"text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal " +
(openTab === 1
? "text-white bg-blueGray-600"
: "text-blueGray-600 bg-white")
}
onClick={e => {
e.preventDefault();
setOpenTab(1);
}}
data-toggle="tab"
href="#link1"
role="tablist"
>
Profile
</a>
</li>
<li className="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a
className={
"text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal " +
(openTab === 2
? "text-white bg-blueGray-600"
: "text-blueGray-600 bg-white")
}
onClick={e => {
e.preventDefault();
setOpenTab(2);
}}
data-toggle="tab"
href="#link2"
role="tablist"
>
Settings
</a>
</li>
<li className="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a
className={
"text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal " +
(openTab === 3
? "text-white bg-blueGray-600"
: "text-blueGray-600 bg-white")
}
onClick={e => {
e.preventDefault();
setOpenTab(3);
}}
data-toggle="tab"
href="#link3"
role="tablist"
>
Options
</a>
</li>
</ul>
<div className="relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded">
<div className="px-4 py-5 flex-auto">
<div className="tab-content tab-space">
<div className={openTab === 1 ? "block" : "hidden"} id="link1">
<p>
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
<br />
<br /> Dramatically visualize customer directed convergence
without revolutionary ROI.
</p>
</div>
<div className={openTab === 2 ? "block" : "hidden"} id="link2">
<p>
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
<br />
<br />
Dynamically innovate resource-leveling customer service for
state of the art customer service.
</p>
</div>
<div className={openTab === 3 ? "block" : "hidden"} id="link3">
<p>
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
<br />
<br /> Dramatically maintain clicks-and-mortar solutions
without functional solutions.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</>
);
};
export default Tabs;
Icons
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
Dramatically visualize customer directed convergence
without revolutionary ROI.
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
Dynamically innovate resource-leveling customer service for
state of the art customer service.
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
Dramatically maintain clicks-and-mortar solutions
without functional solutions.
import React from "react";
const Tabs = () => {
const [openTab, setOpenTab] = React.useState(1);
return (
<>
<div className="flex flex-wrap">
<div className="w-full">
<ul
className="flex mb-0 list-none flex-wrap pt-3 pb-4 flex-row"
role="tablist"
>
<li className="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a
className={
"text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal " +
(openTab === 1
? "text-white bg-blueGray-600"
: "text-blueGray-600 bg-white")
}
onClick={e => {
e.preventDefault();
setOpenTab(1);
}}
data-toggle="tab"
href="#link1"
role="tablist"
>
<i className="fas fa-space-shuttle text-base mr-1"></i> Profile
</a>
</li>
<li className="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a
className={
"text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal " +
(openTab === 2
? "text-white bg-blueGray-600"
: "text-blueGray-600 bg-white")
}
onClick={e => {
e.preventDefault();
setOpenTab(2);
}}
data-toggle="tab"
href="#link2"
role="tablist"
>
<i className="fas fa-cog text-base mr-1"></i> Settings
</a>
</li>
<li className="-mb-px mr-2 last:mr-0 flex-auto text-center">
<a
className={
"text-xs font-bold uppercase px-5 py-3 shadow-lg rounded block leading-normal " +
(openTab === 3
? "text-white bg-blueGray-600"
: "text-blueGray-600 bg-white")
}
onClick={e => {
e.preventDefault();
setOpenTab(3);
}}
data-toggle="tab"
href="#link3"
role="tablist"
>
<i className="fas fa-briefcase text-base mr-1"></i> Options
</a>
</li>
</ul>
<div className="relative flex flex-col min-w-0 break-words bg-white w-full mb-6 shadow-lg rounded">
<div className="px-4 py-5 flex-auto">
<div className="tab-content tab-space">
<div className={openTab === 1 ? "block" : "hidden"} id="link1">
<p>
Collaboratively administrate empowered markets via
plug-and-play networks. Dynamically procrastinate B2C users
after installed base benefits.
<br />
<br /> Dramatically visualize customer directed convergence
without revolutionary ROI.
</p>
</div>
<div className={openTab === 2 ? "block" : "hidden"} id="link2">
<p>
Completely synergize resource taxing relationships via
premier niche markets. Professionally cultivate one-to-one
customer service with robust ideas.
<br />
<br />
Dynamically innovate resource-leveling customer service for
state of the art customer service.
</p>
</div>
<div className={openTab === 3 ? "block" : "hidden"} id="link3">
<p>
Efficiently unleash cross-media information without
cross-media value. Quickly maximize timely deliverables for
real-time schemas.
<br />
<br /> Dramatically maintain clicks-and-mortar solutions
without functional solutions.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</>
);
};
export default Tabs;