From 1402ae5e370fd2f0e608e51b8e0aced3acbbee10 Mon Sep 17 00:00:00 2001 From: MSG <59928086+MSghais@users.noreply.github.com> Date: Sun, 4 Aug 2024 15:38:27 +0200 Subject: [PATCH] lint fix (#1) --- apps/website/src/app/components/About.tsx | 15 ++++++----- .../src/app/components/HeroSection.tsx | 26 +++++++++---------- apps/website/src/app/components/Navbar.tsx | 6 ++++- 3 files changed, 27 insertions(+), 20 deletions(-) diff --git a/apps/website/src/app/components/About.tsx b/apps/website/src/app/components/About.tsx index 40f503fd..0ed0ee93 100644 --- a/apps/website/src/app/components/About.tsx +++ b/apps/website/src/app/components/About.tsx @@ -1,18 +1,21 @@ 'use client'; -import { motion } from 'framer-motion'; +import {motion} from 'framer-motion'; export function About() { return (
- The name "Aligned Fam Kernel" is inspired by our vision to align the web3 family together, in one Social graph. We build and fight together, not against. What if the treasure are the friends we made along the way? Then A decentralized social network should be a treasure trove of memories and connections! + The name "Aligned Fam Kernel" is inspired by our vision to align the web3 family + together, in one Social graph. We build and fight together, not against. What if the + treasure are the friends we made along the way? Then A decentralized social network should + be a treasure trove of memories and connections!
); diff --git a/apps/website/src/app/components/HeroSection.tsx b/apps/website/src/app/components/HeroSection.tsx index 5cc61c8e..d27a8ea2 100644 --- a/apps/website/src/app/components/HeroSection.tsx +++ b/apps/website/src/app/components/HeroSection.tsx @@ -1,28 +1,28 @@ 'use client'; -import { motion } from 'framer-motion'; +import {motion} from 'framer-motion'; export function HeroSection() { return (

@@ -48,12 +48,12 @@ export function HeroSection() { src="/assets/degen-logo.png" className="absolute left-[-31px] desktop:left-2 bottom-[39px] desktop:bottom-[49px] z-[250] desktop:w-[380px] w-[210px]" alt="" - animate={{ x: [-500, 0] }} + animate={{x: [-500, 0]}} transition={{ - x: { duration: 1 }, + x: {duration: 1}, }} - initial={{ opacity: 0 }} - whileInView={{ opacity: 1 }} + initial={{opacity: 0}} + whileInView={{opacity: 1}} />

); diff --git a/apps/website/src/app/components/Navbar.tsx b/apps/website/src/app/components/Navbar.tsx index 3af36bb9..b44ad69d 100644 --- a/apps/website/src/app/components/Navbar.tsx +++ b/apps/website/src/app/components/Navbar.tsx @@ -23,7 +23,11 @@ export function Navbar() {
- +