Skip to content

Commit

Permalink
try new component
Browse files Browse the repository at this point in the history
  • Loading branch information
remorses committed Oct 25, 2024
1 parent 63d6561 commit ef616b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 4 additions & 2 deletions nextjs-app/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import Collection from '@/framer/collection'
import Card from '@/framer/card'
import GrowthSpaceMenu from '@/framer/GrowthSpaceMenu'
import Footer from '@/framer/footer'
import Issue17FramerComponent from '@/framer/issue-17'
import { use } from 'react'

const proxyThatLogsProps = (original) =>
Expand Down Expand Up @@ -55,7 +56,7 @@ function Home() {
variants={{ base: 'Phone', lg: 'Desktop' }}
/>
</div>

<div className=' top-[200px] flex z-10 w-full absolute flex-col items-center'>
<Menus className=' mx-auto' />
</div>
Expand Down Expand Up @@ -96,7 +97,8 @@ function Home() {
/>
</div>
<div className='pt-[200px]'></div>
<GrowthSpaceMenu variant='2' />
<GrowthSpaceMenu variant='2' />
{/* <Issue17FramerComponent /> */}
<div className='pt-[200px]'></div>
<Footer.Responsive
footerText={${new Date().getFullYear()} unframer`}
Expand Down
6 changes: 3 additions & 3 deletions nextjs-app/src/framer/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ body { --framer-will-change-override: none; }

code.framer-text,
code.framer-text span.framer-text:not([data-text-fill]) {
font-family: var(--framer-blockquote-font-family, var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));
font-family: var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));
font-style: var(--framer-blockquote-font-style, var(--framer-code-font-style, var(--framer-font-style, normal)));
font-weight: var(--framer-blockquote-font-weight, var(--framer-code-font-weight, var(--framer-font-weight, 400)));
color: var(--framer-blockquote-text-color, var(--framer-code-text-color, var(--framer-text-color, #000)));
Expand Down Expand Up @@ -322,7 +322,7 @@ body { --framer-will-change-override: none; }

code.framer-text a.framer-text,
code.framer-text a.framer-text span.framer-text:not([data-text-fill]) {
font-family: var(--framer-blockquote-font-family, var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));
font-family: var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif));
font-style: var(--framer-blockquote-font-style, var(--framer-code-font-style, var(--framer-font-style, normal)));
font-weight: var(--framer-blockquote-font-weight, var(--framer-code-font-weight, var(--framer-font-weight, 400)));
color: var(--framer-blockquote-text-color, var(--framer-link-text-color, var(--framer-code-text-color, var(--framer-text-color, #000))));
Expand All @@ -344,7 +344,7 @@ body { --framer-will-change-override: none; }

code.framer-text a.framer-text:hover,
code.framer-text a.framer-text:hover span.framer-text:not([data-text-fill]) {
font-family: var(--framer-blockquote-font-family, var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));
font-family: var(var(--framer-code-font-family, var(--framer-font-family, Inter, Inter Placeholder, sans-serif)));
font-style: var(--framer-blockquote-font-style, var(--framer-code-font-style, var(--framer-font-style, normal)));
font-weight: var(--framer-blockquote-font-weight, var(--framer-code-font-weight, var(--framer-font-weight, 400)));
color: var(--framer-link-hover-text-color, var(--framer-blockquote-text-color, var(--framer-link-text-color, var(--framer-code-text-color, var(--framer-text-color, #000)))));
Expand Down

0 comments on commit ef616b3

Please sign in to comment.