mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-06 09:17:05 -06:00
Fix key/unescaped entities
This commit is contained in:
@@ -58,9 +58,9 @@ const AppWrapper: FunctionComponent<WrapperProps> = ({children}: WrapperProps) =
|
|||||||
<Disclosure.Panel className="sm:hidden">
|
<Disclosure.Panel className="sm:hidden">
|
||||||
<div className="space-y-1 px-2 pt-2 pb-3">
|
<div className="space-y-1 px-2 pt-2 pb-3">
|
||||||
{navigation.map((item) => (
|
{navigation.map((item) => (
|
||||||
<Link href={item.href}>
|
<Link key={item.name} href={item.href}>
|
||||||
<Disclosure.Button
|
<Disclosure.Button
|
||||||
key={item.name}
|
|
||||||
as="a"
|
as="a"
|
||||||
className={classNames(
|
className={classNames(
|
||||||
item.current ? 'bg-zinc-900 text-white' : 'text-gray-300 hover:bg-zinc-700 hover:text-white',
|
item.current ? 'bg-zinc-900 text-white' : 'text-gray-300 hover:bg-zinc-700 hover:text-white',
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ const PhototagPage: NextPage = () => {
|
|||||||
|
|
||||||
<p>Phototag is a powerful tool that helps you quickly and easily add rich, descriptive tags to
|
<p>Phototag is a powerful tool that helps you quickly and easily add rich, descriptive tags to
|
||||||
your
|
your
|
||||||
photos. Using Google's Vision API, Phototag automatically generates tags based on the visual
|
photos. Using Google's Vision API, Phototag automatically generates tags based on the visual
|
||||||
content
|
content
|
||||||
of your photos, making it easier than ever to organize and find your photos.</p>
|
of your photos, making it easier than ever to organize and find your photos.</p>
|
||||||
<p>
|
<p>
|
||||||
@@ -40,7 +40,7 @@ const PhototagPage: NextPage = () => {
|
|||||||
Phototag
|
Phototag
|
||||||
into
|
into
|
||||||
your existing
|
your existing
|
||||||
workflow on Windows. Whether you're a professional photographer or a casual snapshot taker,
|
workflow on Windows. Whether you're a professional photographer or a casual snapshot taker,
|
||||||
Phototag
|
Phototag
|
||||||
is the perfect tool for adding clarity and context to your photos.
|
is the perfect tool for adding clarity and context to your photos.
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -2,8 +2,7 @@ import {NextPage} from "next";
|
|||||||
import AppWrapper from "../components/AppWrapper";
|
import AppWrapper from "../components/AppWrapper";
|
||||||
|
|
||||||
const ProjectsPage: NextPage = () => {
|
const ProjectsPage: NextPage = () => {
|
||||||
return <AppWrapper>
|
return <AppWrapper />;
|
||||||
</AppWrapper>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export default ProjectsPage;
|
export default ProjectsPage;
|
||||||
Reference in New Issue
Block a user