Compare commits
No commits in common. "be37734851d3406847486109121b6c07d7a1dc9e" and "340247cd773a14e0b787d4805f78c9657cfc7fad" have entirely different histories.
be37734851
...
340247cd77
42
.github/workflows/bump.yml
vendored
Normal file
42
.github/workflows/bump.yml
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
name: Bump Dependencies
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *"
|
||||||
|
- cron: "0 12 * * *"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update-dependencies:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout Repo
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: oven-sh/setup-bun@v2
|
||||||
|
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: bun install
|
||||||
|
|
||||||
|
- name: Update Dependencies
|
||||||
|
run: bun update
|
||||||
|
|
||||||
|
- name: Commit and Push Changes
|
||||||
|
env:
|
||||||
|
USERNAME_GITEA: ${{ secrets.USERNAME_GITEA }}
|
||||||
|
TOKEN_GITEA: ${{ secrets.TOKEN_GITEA }}
|
||||||
|
SERVER_URL: ${{ secrets.SERVER_URL }}
|
||||||
|
run: |
|
||||||
|
git config --global user.name "LibreCloud Actions Bot"
|
||||||
|
git config --global user.email "git@pontusmail.org"
|
||||||
|
echo "Connecting to $SERVER_URL"
|
||||||
|
git remote set-url origin https://${USERNAME_GITEA}:${TOKEN_GITEA}@git.pontusmail.org/librecloud/web.git
|
||||||
|
git add .
|
||||||
|
git commit -m "chore: bump dependencies" || exit 0
|
||||||
|
git push origin main
|
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
||||||
import { Sparkles } from "lucide-react";
|
import { Sparkles } from "lucide-react";
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
||||||
import { HomeTab } from "@/components/pages/dashboard/downloads/HomeTab"
|
import { HomeTab } from "@/components/pages/dashboard/downloads/HomeTab"
|
||||||
import { EmailTab } from "@/components/pages/dashboard/downloads/EmailTab"
|
import { EmailTab } from "@/components/pages/dashboard/downloads/EmailTab"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
||||||
import { BadgeDollarSign } from "lucide-react"
|
import { BadgeDollarSign } from "lucide-react"
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { useState, useEffect } from "react"
|
import { useState, useEffect } from "react"
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
|
||||||
import { OverviewTab } from "@/components/pages/dashboard/OverviewTab"
|
import { OverviewTab } from "@/components/pages/dashboard/OverviewTab"
|
||||||
import { SecurityTab } from "@/components/pages/dashboard/SecurityTab"
|
import { SecurityTab } from "@/components/pages/dashboard/SecurityTab"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
||||||
import { Switch } from "@/components/ui/switch"
|
import { Switch } from "@/components/ui/switch"
|
||||||
import { Label } from "@/components/ui/label"
|
import { Label } from "@/components/ui/label"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||||||
import { Separator } from "@/components/ui/separator";
|
import { Separator } from "@/components/ui/separator";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
||||||
import { Input } from "@/components/ui/input"
|
import { Input } from "@/components/ui/input"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
import { SideMenu } from "@/components/pages/dashboard/SideMenu"
|
||||||
|
|
||||||
const fadeIn = {
|
const fadeIn = {
|
||||||
|
@ -9,7 +9,7 @@ import { Label } from "@/components/ui/label"
|
|||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "@/components/ui/button"
|
||||||
import { Switch } from "@/components/ui/switch"
|
import { Switch } from "@/components/ui/switch"
|
||||||
import Link from "next/link"
|
import Link from "next/link"
|
||||||
import { motion, AnimatePresence } from "motion/react"
|
import { motion, AnimatePresence } from "framer-motion"
|
||||||
import { UserPlus, UserCog, Heart, AlertCircle, CheckCircle2, Mail, Lock, User, Bot, Loader, ArrowLeft } from "lucide-react"
|
import { UserPlus, UserCog, Heart, AlertCircle, CheckCircle2, Mail, Lock, User, Bot, Loader, ArrowLeft } from "lucide-react"
|
||||||
import { useRouter } from "next/navigation"
|
import { useRouter } from "next/navigation"
|
||||||
import { validateEmail, validatePassword } from "@/lib/utils"
|
import { validateEmail, validatePassword } from "@/lib/utils"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
|
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
|
||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "@/components/ui/button"
|
||||||
import { ExternalLink, Mail, Sparkles, Lock, BadgeCheck, CircleArrowRight } from "lucide-react"
|
import { ExternalLink, Mail, Sparkles, Lock, BadgeCheck, CircleArrowRight } from "lucide-react"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
"use client"
|
"use client"
|
||||||
|
|
||||||
|
import { motion } from "framer-motion"
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import { motion } from "motion/react"
|
|
||||||
import { Mail, Lock, Disc3, Headset } from "lucide-react"
|
import { Mail, Lock, Disc3, Headset } from "lucide-react"
|
||||||
import { SiGitea, SiAuthentik } from "react-icons/si"
|
import { SiGitea, SiAuthentik } from "react-icons/si"
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
import React from "react"
|
import React from "react"
|
||||||
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
|
||||||
import { motion } from "motion/react"
|
import { motion } from "framer-motion"
|
||||||
import AnimatedIcon from "./AnimatedIcon"
|
import AnimatedIcon from "./AnimatedIcon"
|
||||||
|
|
||||||
interface FeatureCardProps {
|
interface FeatureCardProps {
|
||||||
|
@ -6,7 +6,7 @@ import { Separator } from "@/components/ui/separator"
|
|||||||
import { Badge } from "@/components/ui/badge"
|
import { Badge } from "@/components/ui/badge"
|
||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "@/components/ui/button"
|
||||||
import Link from "next/link"
|
import Link from "next/link"
|
||||||
import { motion } from "motion/react"
|
import { motion, HTMLMotionProps } from "framer-motion"
|
||||||
|
|
||||||
interface PricingFeatures {
|
interface PricingFeatures {
|
||||||
everything: string[]
|
everything: string[]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user