Skip to content

Commit

Permalink
add pSEO
Browse files Browse the repository at this point in the history
  • Loading branch information
andrecasal committed May 7, 2024
1 parent 6b67fff commit 834e8ba
Show file tree
Hide file tree
Showing 7 changed files with 935 additions and 87 deletions.
4 changes: 2 additions & 2 deletions app/root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,11 @@ function App() {
</head>
<body className="flex h-full flex-col justify-between bg-background text-foreground antialiased">
<TooltipPrimitive.Provider delayDuration={300}>
<Header />
{!location.pathname.startsWith('/explicacoes') ? <Header /> : null}
<div className="flex-1">
<Outlet />
</div>
<Footer />
{!location.pathname.startsWith('/explicacoes') ? <Footer /> : null}
<Confetti id={data.flash?.confetti} />
<Toaster />
<ScrollRestoration nonce={nonce} />
Expand Down
6 changes: 3 additions & 3 deletions app/routes/_marketing+/explicacoes-de-programacao.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const links: LinksFunction = () => {
]
}

const Tutoring = () => {
const Route = () => {
const features = [
{
name: 'Aulas online por video-conferência',
Expand Down Expand Up @@ -328,7 +328,7 @@ const Tutoring = () => {

return (
<>
<Container className="relative">
<Container className="relative mt-14">
<div className="lg:grid lg:grid-cols-12 lg:gap-x-20">
<div className="pb-24 pt-10 sm:pb-32 lg:col-span-7 lg:pb-56 lg:pt-48 xl:col-span-6">
<div className="mx-auto max-w-2xl lg:mx-0">
Expand Down Expand Up @@ -935,4 +935,4 @@ const Tutoring = () => {
</>
)
}
export default Tutoring
export default Route
Loading

0 comments on commit 834e8ba

Please sign in to comment.