replace all logos
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import { Button } from '@/components/Button'
|
import { Button } from '@/components/Button'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '@/components/Container'
|
||||||
|
import { Logo } from '@/components/Logo'
|
||||||
|
|
||||||
|
|
||||||
export function CallToAction() {
|
export function CallToAction() {
|
||||||
@@ -21,7 +22,7 @@ export function CallToAction() {
|
|||||||
<Container className="relative">
|
<Container className="relative">
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<div className="flex items-center justify-center">
|
<div className="flex items-center justify-center">
|
||||||
<img src="./images/logos/veda_icon2.svg" alt="" width={50} height={50} className="h-18 w-auto mt-6" />
|
<Logo className="h-18 w-auto mt-6" />
|
||||||
</div>
|
</div>
|
||||||
<h2 className="font-display lg:text-3xl text-xl tracking-tight text-white pt-4 lg:pt-6">
|
<h2 className="font-display lg:text-3xl text-xl tracking-tight text-white pt-4 lg:pt-6">
|
||||||
VEDA provides an unparalleled cruise experience on the Nile, blending authenticity with sophistication. Enjoy private journeys featuring organic cuisine, hollistic activities, and a dedicated, warm-hearted crew.
|
VEDA provides an unparalleled cruise experience on the Nile, blending authenticity with sophistication. Enjoy private journeys featuring organic cuisine, hollistic activities, and a dedicated, warm-hearted crew.
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { Button } from '@/components/Button'
|
import { Button } from '@/components/Button'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '@/components/Container'
|
||||||
|
import { Logo } from '@/components/Logo'
|
||||||
|
|
||||||
|
|
||||||
export function CallToAction2() {
|
export function CallToAction2() {
|
||||||
@@ -19,7 +20,7 @@ export function CallToAction2() {
|
|||||||
<Container className="relative ">
|
<Container className="relative ">
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<div className="flex items-center justify-center">
|
<div className="flex items-center justify-center">
|
||||||
<img src="./images/logos/veda_name.svg" alt="" width={120} height={32} className="h-16 w-auto opacity-100" />
|
<Logo className="h-16 w-auto opacity-100" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
@@ -1,5 +1,6 @@
|
|||||||
import { Button } from '@/components/Button'
|
import { Button } from '@/components/Button'
|
||||||
import { Container } from '@/components/Container'
|
import { Container } from '@/components/Container'
|
||||||
|
import { Logo } from '@/components/Logo'
|
||||||
|
|
||||||
|
|
||||||
export function CallToAction3() {
|
export function CallToAction3() {
|
||||||
@@ -19,7 +20,7 @@ export function CallToAction3() {
|
|||||||
<Container className="relative ">
|
<Container className="relative ">
|
||||||
<div className="mx-auto max-w-3xl text-center">
|
<div className="mx-auto max-w-3xl text-center">
|
||||||
<div className="flex items-center justify-center">
|
<div className="flex items-center justify-center">
|
||||||
<img src="/images/veda_name.svg" alt="" width={120} height={32} className="h-16 w-auto opacity-100" />
|
<Logo className="h-20 w-auto opacity-100" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
|
@@ -38,7 +38,7 @@ const SvgIcon = (props) => (
|
|||||||
|
|
||||||
export function Logo(props) {
|
export function Logo(props) {
|
||||||
return (
|
return (
|
||||||
<div className="bg-[#FEFFF6] px-2 py-1 rounded">
|
<div className="bg-transparent px-2 py-1 rounded">
|
||||||
<SvgIcon {...props} />
|
<SvgIcon {...props} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Reference in New Issue
Block a user