Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
ignmandagaran committed Apr 22, 2024
1 parent 3cc8c63 commit 4416cf7
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 8 deletions.
6 changes: 5 additions & 1 deletion src/app/(auth)/contact/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Metadata } from 'next'
import { Metadata, Viewport } from 'next'
import { Footer } from '~/components/Footer'
import { Header } from '~/components/Header'
import Script from 'next/script'
Expand All @@ -9,6 +9,10 @@ export const metadata: Metadata = {
title: 'Contact'
}

export const viewport: Viewport = {
themeColor: '#FFF'
}

const Contact = () => {
return (
<>
Expand Down
11 changes: 10 additions & 1 deletion src/app/about/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
import { Pump } from '.basehub/react-pump'
import { draftMode } from 'next/headers'
import { aboutPageFragment, pricingPageFragment } from '~/lib/basehub-queries'
import { aboutPageFragment } from '~/lib/basehub-queries'
import { Header } from '~/components/Header'
import { Footer } from '~/components/Footer'
import { Hero } from '~/components/about/Hero'
import { Team } from '~/components/about/Team'
import { Values } from '~/components/about/Values'
import { Work } from '~/components/sections/about/work'
import { Metadata, Viewport } from 'next/types'

export const metadata: Metadata = {
title: 'About Us'
}

export const viewport: Viewport = {
themeColor: '#FFF'
}

export default function Home() {
return (
Expand Down
7 changes: 5 additions & 2 deletions src/app/branding/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
import { Metadata } from 'next'
import { Metadata, Viewport } from 'next'
import { Footer } from '~/components/Footer'
import { Header } from '~/components/Header'

import { TitleAndSubtitle } from '~/components/primitives/texts'
import s from '~/components/sections/branding/branding.module.scss'
import LogoDownloadWidget from '~/components/sections/branding/LogoDownloadWidget'
import StyleGuide from '~/components/sections/branding/StyleGuide'

export const viewport: Viewport = {
themeColor: '#FFF'
}

export const metadata: Metadata = {
title: 'Branding'
}
Expand Down
5 changes: 5 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ import FAQ from '~/components/sections/FAQ'
import DynamicAnalysis from '~/components/sections/DynamicAnalysis'
import { Content } from '~/components/sections/Content'
import { Hero } from './components/hero'
import { Viewport } from 'next/types'

export const viewport: Viewport = {
themeColor: '#FFF'
}

export default function Home() {
return (
Expand Down
6 changes: 5 additions & 1 deletion src/app/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ import { Footer } from '~/components/Footer'
import { PricingFAQ } from '~/components/pricing/PricingFAQ'
import { CostCalculator } from '~/components/pricing/sections/CostCalculator'
import { featureFlags } from '~/lib/feature-flags'
import { Viewport } from 'next/types'
import { Metadata, Viewport } from 'next/types'

export const metadata: Metadata = {
title: 'Pricing'
}

export const viewport: Viewport = {
themeColor: '#0F172A'
Expand Down
6 changes: 5 additions & 1 deletion src/app/privacy-policy/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Metadata } from 'next'
import { Metadata, Viewport } from 'next'
import { Footer } from '~/components/Footer'
import { Header } from '~/components/Header'
import { Policy } from '~/components/sections/legal/policy'
Expand All @@ -7,6 +7,10 @@ export const metadata: Metadata = {
title: 'Security and Privacy'
}

export const viewport: Viewport = {
themeColor: '#FFF'
}

const Privacy = () => {
return (
<>
Expand Down
6 changes: 5 additions & 1 deletion src/app/security-and-privacy/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Metadata } from 'next'
import { Metadata, Viewport } from 'next'
import { Footer } from '~/components/Footer'
import { Header } from '~/components/Header'
import { Security } from '~/components/sections/legal/security'
Expand All @@ -7,6 +7,10 @@ export const metadata: Metadata = {
title: 'Security and Privacy'
}

export const viewport: Viewport = {
themeColor: '#FFF'
}

const Privacy = () => {
return (
<>
Expand Down
6 changes: 5 additions & 1 deletion src/app/terms-of-service/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Metadata } from 'next'
import { Metadata, Viewport } from 'next'
import { Footer } from '~/components/Footer'
import { Header } from '~/components/Header'

Expand All @@ -8,6 +8,10 @@ export const metadata: Metadata = {
title: 'Terms of Service'
}

export const viewport: Viewport = {
themeColor: '#FFF'
}

const Terms = () => {
return (
<>
Expand Down

0 comments on commit 4416cf7

Please sign in to comment.