Skip to content

Commit

Permalink
Merge branch 'main' into fix-meta-index-google
Browse files Browse the repository at this point in the history
  • Loading branch information
AldemirLucas authored Jan 30, 2024
2 parents 4915dc4 + 2298e60 commit cc272dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cd-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ jobs:
limits:
cpu: 500m
memory: 1Gi
env: []
env:
- name: "NEXT_PUBLIC_KEY_STRIPE"
value: "${{ secrets.NEXT_PUBLIC_KEY_STRIPE }}"
envFrom:
- secretRef:
name: basedosdados-website-development
Expand Down
3 changes: 0 additions & 3 deletions next/pages/_app.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@ function MyApp({ Component, pageProps }) {
return (
<QueryClientProvider client={queryClient}>
<Head>
{/* <meta/> para não noindex ambientes de development e staging */}
<meta name="robots" content="noindex"/>
{/* <meta/> para não noindex ambientes de development e staging */}
<link rel="icon" type="image/ico" href="/favicon.ico" />
<link
rel="image_src"
Expand Down
4 changes: 2 additions & 2 deletions next/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ function Support({ pages }) {
}

function BDEdu () {
const closeDate = new Date(2024, 1, 5)
const closeDate = new Date(2024, 1, 6)
const currentDate = new Date()

if(currentDate > closeDate) return null
Expand Down Expand Up @@ -703,7 +703,7 @@ export default function Home({
return (
<MainPageTemplate id="home" backgroundColor="#FFFFFF" pages={pages}>
<Hero />
<BDEdu />
{/* <BDEdu /> */}
<BePartner />
<Products />
<Support pages={pages} />
Expand Down

0 comments on commit cc272dc

Please sign in to comment.