This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example requires some changes to your config: | |
``` | |
// tailwind.config.js | |
module.exports = { | |
// ... | |
plugins: [ | |
// ... | |
require('@tailwindcss/forms'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function Example() { | |
return ( | |
<div className="bg-white py-24 sm:py-32"> | |
<div className="mx-auto max-w-7xl px-6 lg:px-8"> | |
<div className="mx-auto grid max-w-lg grid-cols-4 items-center gap-x-8 gap-y-12 sm:max-w-xl sm:grid-cols-6 sm:gap-x-10 sm:gap-y-14 lg:mx-0 lg:max-w-none lg:grid-cols-5"> | |
<img | |
className="col-span-2 max-h-12 w-full object-contain lg:col-span-1" | |
src="https://tailwindui.com/img/logos/158x48/transistor-logo-gray-900.svg" | |
alt="Transistor" | |
width={158} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function Example() { | |
return ( | |
<div className="relative bg-white"> | |
<div className="mx-auto max-w-7xl lg:grid lg:grid-cols-12 lg:gap-x-8 lg:px-8"> | |
<div className="px-6 pb-24 pt-10 sm:pb-32 lg:col-span-7 lg:px-0 lg:pb-56 lg:pt-48 xl:col-span-6"> | |
<div className="mx-auto max-w-2xl lg:mx-0"> | |
<img | |
className="h-11" | |
src="https://tailwindui.com/img/logos/mark.svg?color=indigo&shade=600" | |
alt="Your Company" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useState } from 'react' | |
import { Dialog } from '@headlessui/react' | |
import { Bars3Icon, XMarkIcon } from '@heroicons/react/24/outline' | |
const navigation = [ | |
{ name: 'Product', href: '#' }, | |
{ name: 'Features', href: '#' }, | |
{ name: 'Marketplace', href: '#' }, | |
{ name: 'Company', href: '#' }, | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const navigation = { | |
solutions: [ | |
{ name: 'Marketing', href: '#' }, | |
{ name: 'Analytics', href: '#' }, | |
{ name: 'Commerce', href: '#' }, | |
{ name: 'Insights', href: '#' }, | |
], | |
support: [ | |
{ name: 'Pricing', href: '#' }, | |
{ name: 'Documentation', href: '#' }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example requires some changes to your config: | |
``` | |
// tailwind.config.js | |
module.exports = { | |
// ... | |
plugins: [ | |
// ... | |
require('@tailwindcss/forms'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Fragment, useState } from 'react' | |
import { Dialog, Transition } from '@headlessui/react' | |
import { ExclamationTriangleIcon, XMarkIcon } from '@heroicons/react/24/outline' | |
export default function Example() { | |
const [open, setOpen] = useState(true) | |
return ( | |
<Transition.Root show={open} as={Fragment}> | |
<Dialog as="div" className="relative z-10" onClose={setOpen}> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example requires some changes to your config: | |
``` | |
// tailwind.config.js | |
module.exports = { | |
// ... | |
plugins: [ | |
// ... | |
require('@tailwindcss/forms'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Disclosure } from '@headlessui/react' | |
import { MinusSmallIcon, PlusSmallIcon } from '@heroicons/react/24/outline' | |
const faqs = [ | |
{ | |
question: "What's the best thing about Switzerland?", | |
answer: | |
"I don't know, but the flag is a big plus. Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas cupiditate laboriosam fugiat.", | |
}, | |
// More questions... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default function Article({ article }) { | |
return ( | |
<> | |
<h3>{article.title}</h3> | |
<br /> | |
<Link href='/'>Go Back</Link> | |
</> | |
); | |
} |
NewerOlder