File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 11import { Activity } from "lucide-react" ;
2+ import { Tabs , TabsContent , TabsList , TabsTrigger } from "@/components/ui/tabs" ;
23
34export const Analysis = ( ) => {
45 return (
@@ -13,6 +14,25 @@ export const Analysis = () => {
1314 Configure and apply advanced algorithms for cleaning and analyzing your ADV data
1415 </ p >
1516 </ div >
17+ < Tabs defaultValue = "pre" className = "w-full" >
18+ < TabsList className = "grid w-full grid-cols-3 mb-8 h-12" >
19+ < TabsTrigger value = "pre" className = "text-sm font-medium" > Pre-Process</ TabsTrigger >
20+ < TabsTrigger value = "pro" className = "text-sm font-medium" > Despiking</ TabsTrigger >
21+ < TabsTrigger value = "pos" className = "text-sm font-medium" > Post-Process</ TabsTrigger >
22+ </ TabsList >
23+
24+ < TabsContent value = "pre" className = "w-full" >
25+
26+ </ TabsContent >
27+
28+ < TabsContent value = "pro" className = "w-full" >
29+
30+ </ TabsContent >
31+
32+ < TabsContent value = "pos" className = "w-full" >
33+
34+ </ TabsContent >
35+ </ Tabs >
1636 </ div >
1737 </ section >
1838 ) ;
You can’t perform that action at this time.
0 commit comments