Merge version_2 into main #4
@@ -12,6 +12,7 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { Zap, Users, Award, Handshake, Github, Linkedin, Twitter } from "lucide-react";
|
||||
import { useState } from 'react';
|
||||
import { getCTAButtonVariant } from '@/utils/designTokens';
|
||||
|
||||
export default function LandingPage() {
|
||||
const [flippedCards, setFlippedCards] = useState<{[key: string]: boolean}>({});
|
||||
@@ -203,7 +204,7 @@ export default function LandingPage() {
|
||||
href={social.href}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
className="flex items-center justify-center gap-3 px-4 py-3 rounded-lg bg-white/10 hover:bg-white/20 text-white transition-colors"
|
||||
className={`flex items-center justify-center gap-3 px-4 py-3 rounded-lg ${getCTAButtonVariant('shift-hover')} text-white transition-colors`}
|
||||
title={social.label}
|
||||
>
|
||||
<Icon className="w-5 h-5" />
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
'use client';
|
||||
|
||||
import React, { createContext, useContext, useState } from 'react';
|
||||
import { getCardStyleClasses } from '@/utils/designTokens';
|
||||
|
||||
interface SocialLink {
|
||||
platform: string;
|
||||
@@ -59,7 +60,7 @@ function TeamCard({ member }: TeamCardProps) {
|
||||
|
||||
return (
|
||||
<div
|
||||
className="h-80 w-full cursor-pointer perspective"
|
||||
className={`h-80 w-full cursor-pointer perspective ${getCardStyleClasses('glass-elevated')}`}
|
||||
onMouseEnter={() => setIsFlipped(true)}
|
||||
onMouseLeave={() => setIsFlipped(false)}
|
||||
>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
"use client";
|
||||
|
||||
import { useState } from "react";
|
||||
import { getCardStyleClasses } from '@/utils/designTokens';
|
||||
|
||||
interface TeamMember {
|
||||
id: string;
|
||||
@@ -39,7 +40,7 @@ export default function Tag({ members = defaultMembers }: TagProps) {
|
||||
{members.map((member) => (
|
||||
<div
|
||||
key={member.id}
|
||||
className="h-80 cursor-pointer perspective"
|
||||
className={`h-80 cursor-pointer perspective ${getCardStyleClasses('glass-elevated')}`}
|
||||
onClick={() => toggleFlip(member.id)}
|
||||
>
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user